From 417aa236fb7e38a3a14e234e7e954d922806c10a Mon Sep 17 00:00:00 2001 From: Sergej Jaskiewicz Date: Thu, 14 Sep 2023 20:30:42 +0200 Subject: [PATCH] [FIR/IR generator] Factor out printing the preamble in generated files --- .../build.gradle.kts | 1 + .../generator/ArgumentsConverterGenerator.kt | 2 - .../kotlin/analysis/api/fir/generator/Main.kt | 16 ++++++ .../AbstractDiagnosticsDataClassRenderer.kt | 7 +-- .../fir/checkers/generator/Generator.kt | 2 - .../NonSuppressibleErrorNamesGenerator.kt | 2 - .../model/ErrorListDiagnosticListRenderer.kt | 7 +-- .../kotlin/fir/checkers/generator/utils.kt | 15 ++++++ .../kotlin/fir/FirAnnotationContainer.kt | 8 ++- .../org/jetbrains/kotlin/fir/FirElement.kt | 8 ++- .../kotlin/fir/FirElementWithResolveState.kt | 8 ++- .../kotlin/fir/FirFileAnnotationsContainer.kt | 8 ++- .../kotlin/fir/FirFunctionTypeParameter.kt | 8 ++- .../gen/org/jetbrains/kotlin/fir/FirLabel.kt | 8 ++- .../kotlin/fir/FirPackageDirective.kt | 8 ++- .../jetbrains/kotlin/fir/FirTargetElement.kt | 8 ++- .../builder/FirAnnotationContainerBuilder.kt | 8 ++- .../FirFileAnnotationsContainerBuilder.kt | 8 ++- .../FirFunctionTypeParameterBuilder.kt | 8 ++- .../kotlin/fir/builder/FirLabelBuilder.kt | 8 ++- .../fir/builder/FirPackageDirectiveBuilder.kt | 8 ++- .../fir/contracts/FirContractDescription.kt | 8 ++- .../FirContractElementDeclaration.kt | 8 ++- .../fir/contracts/FirEffectDeclaration.kt | 8 ++- .../FirLegacyRawContractDescription.kt | 8 ++- .../contracts/FirRawContractDescription.kt | 8 ++- .../FirResolvedContractDescription.kt | 8 ++- .../FirContractElementDeclarationBuilder.kt | 8 ++- .../builder/FirEffectDeclarationBuilder.kt | 8 ++- .../FirLegacyRawContractDescriptionBuilder.kt | 8 ++- .../FirRawContractDescriptionBuilder.kt | 8 ++- .../FirResolvedContractDescriptionBuilder.kt | 8 ++- .../impl/FirContractElementDeclarationImpl.kt | 8 ++- .../impl/FirEffectDeclarationImpl.kt | 8 ++- .../FirLegacyRawContractDescriptionImpl.kt | 8 ++- .../impl/FirRawContractDescriptionImpl.kt | 8 ++- .../FirResolvedContractDescriptionImpl.kt | 8 ++- .../fir/declarations/FirAnonymousFunction.kt | 8 ++- .../declarations/FirAnonymousInitializer.kt | 8 ++- .../fir/declarations/FirAnonymousObject.kt | 8 ++- .../fir/declarations/FirBackingField.kt | 8 ++- .../declarations/FirCallableDeclaration.kt | 8 ++- .../kotlin/fir/declarations/FirClass.kt | 8 ++- .../declarations/FirClassLikeDeclaration.kt | 8 ++- .../fir/declarations/FirCodeFragment.kt | 8 ++- .../FirConstructedClassTypeParameterRef.kt | 8 ++- .../kotlin/fir/declarations/FirConstructor.kt | 8 ++- .../fir/declarations/FirContextReceiver.kt | 8 ++- .../FirContractDescriptionOwner.kt | 8 ++- .../declarations/FirControlFlowGraphOwner.kt | 8 ++- .../declarations/FirDanglingModifierList.kt | 8 ++- .../kotlin/fir/declarations/FirDeclaration.kt | 8 ++- .../fir/declarations/FirDeclarationStatus.kt | 8 ++- .../kotlin/fir/declarations/FirEnumEntry.kt | 8 ++- .../fir/declarations/FirErrorFunction.kt | 8 ++- .../kotlin/fir/declarations/FirErrorImport.kt | 8 ++- .../FirErrorPrimaryConstructor.kt | 8 ++- .../fir/declarations/FirErrorProperty.kt | 8 ++- .../kotlin/fir/declarations/FirField.kt | 8 ++- .../kotlin/fir/declarations/FirFile.kt | 8 ++- .../kotlin/fir/declarations/FirFunction.kt | 8 ++- .../kotlin/fir/declarations/FirImport.kt | 8 ++- .../fir/declarations/FirMemberDeclaration.kt | 8 ++- .../FirOuterClassTypeParameterRef.kt | 8 ++- .../kotlin/fir/declarations/FirProperty.kt | 8 ++- .../fir/declarations/FirPropertyAccessor.kt | 8 ++- .../fir/declarations/FirReceiverParameter.kt | 8 ++- .../fir/declarations/FirRegularClass.kt | 8 ++- .../FirResolvedDeclarationStatus.kt | 8 ++- .../fir/declarations/FirResolvedImport.kt | 8 ++- .../kotlin/fir/declarations/FirScript.kt | 8 ++- .../fir/declarations/FirSimpleFunction.kt | 8 ++- .../kotlin/fir/declarations/FirTypeAlias.kt | 8 ++- .../fir/declarations/FirTypeParameter.kt | 8 ++- .../fir/declarations/FirTypeParameterRef.kt | 8 ++- .../declarations/FirTypeParameterRefsOwner.kt | 8 ++- .../declarations/FirTypeParametersOwner.kt | 8 ++- .../fir/declarations/FirValueParameter.kt | 8 ++- .../kotlin/fir/declarations/FirVariable.kt | 8 ++- .../builder/FirAbstractConstructorBuilder.kt | 8 ++- .../builder/FirAnonymousFunctionBuilder.kt | 8 ++- .../builder/FirAnonymousInitializerBuilder.kt | 8 ++- .../builder/FirAnonymousObjectBuilder.kt | 8 ++- .../builder/FirBackingFieldBuilder.kt | 8 ++- .../declarations/builder/FirClassBuilder.kt | 8 ++- .../builder/FirCodeFragmentBuilder.kt | 8 ++- ...ConstructedClassTypeParameterRefBuilder.kt | 8 ++- .../builder/FirConstructorBuilder.kt | 8 ++- .../builder/FirContextReceiverBuilder.kt | 8 ++- .../builder/FirDanglingModifierListBuilder.kt | 8 ++- .../builder/FirDeclarationBuilder.kt | 8 ++- .../FirDefaultSetterValueParameterBuilder.kt | 8 ++- .../builder/FirEnumEntryBuilder.kt | 8 ++- .../builder/FirErrorFunctionBuilder.kt | 8 ++- .../builder/FirErrorImportBuilder.kt | 8 ++- .../FirErrorPrimaryConstructorBuilder.kt | 8 ++- .../builder/FirErrorPropertyBuilder.kt | 8 ++- .../declarations/builder/FirFieldBuilder.kt | 8 ++- .../declarations/builder/FirFileBuilder.kt | 8 ++- .../builder/FirFunctionBuilder.kt | 8 ++- .../declarations/builder/FirImportBuilder.kt | 8 ++- .../FirOuterClassTypeParameterRefBuilder.kt | 8 ++- .../builder/FirPrimaryConstructorBuilder.kt | 8 ++- .../builder/FirPropertyAccessorBuilder.kt | 8 ++- .../builder/FirPropertyBuilder.kt | 8 ++- .../builder/FirReceiverParameterBuilder.kt | 8 ++- .../builder/FirRegularClassBuilder.kt | 8 ++- .../builder/FirResolvedImportBuilder.kt | 8 ++- .../declarations/builder/FirScriptBuilder.kt | 8 ++- .../builder/FirSimpleFunctionBuilder.kt | 8 ++- .../builder/FirTypeAliasBuilder.kt | 8 ++- .../builder/FirTypeParameterBuilder.kt | 8 ++- .../FirTypeParameterRefsOwnerBuilder.kt | 8 ++- .../builder/FirTypeParametersOwnerBuilder.kt | 8 ++- .../builder/FirValueParameterBuilder.kt | 8 ++- .../builder/FirVariableBuilder.kt | 8 ++- .../impl/FirAnonymousFunctionImpl.kt | 8 ++- .../impl/FirAnonymousInitializerImpl.kt | 8 ++- .../impl/FirAnonymousObjectImpl.kt | 8 ++- .../declarations/impl/FirBackingFieldImpl.kt | 8 ++- .../declarations/impl/FirCodeFragmentImpl.kt | 8 ++- ...FirConstructedClassTypeParameterRefImpl.kt | 8 ++- .../declarations/impl/FirConstructorImpl.kt | 8 ++- .../impl/FirContextReceiverImpl.kt | 8 ++- .../impl/FirDanglingModifierListImpl.kt | 8 ++- .../impl/FirDefaultSetterValueParameter.kt | 8 ++- .../fir/declarations/impl/FirEnumEntryImpl.kt | 8 ++- .../declarations/impl/FirErrorFunctionImpl.kt | 8 ++- .../declarations/impl/FirErrorImportImpl.kt | 8 ++- .../impl/FirErrorPrimaryConstructorImpl.kt | 8 ++- .../declarations/impl/FirErrorPropertyImpl.kt | 8 ++- .../fir/declarations/impl/FirFieldImpl.kt | 8 ++- .../fir/declarations/impl/FirFileImpl.kt | 8 ++- .../fir/declarations/impl/FirImportImpl.kt | 8 ++- .../impl/FirOuterClassTypeParameterRefImpl.kt | 8 ++- .../impl/FirPrimaryConstructor.kt | 8 ++- .../impl/FirPropertyAccessorImpl.kt | 8 ++- .../fir/declarations/impl/FirPropertyImpl.kt | 8 ++- .../impl/FirReceiverParameterImpl.kt | 8 ++- .../declarations/impl/FirRegularClassImpl.kt | 8 ++- .../impl/FirResolvedImportImpl.kt | 8 ++- .../fir/declarations/impl/FirScriptImpl.kt | 8 ++- .../impl/FirSimpleFunctionImpl.kt | 8 ++- .../fir/declarations/impl/FirTypeAliasImpl.kt | 8 ++- .../declarations/impl/FirTypeParameterImpl.kt | 8 ++- .../impl/FirValueParameterImpl.kt | 8 ++- .../fir/diagnostics/FirDiagnosticHolder.kt | 8 ++- .../kotlin/fir/expressions/FirAnnotation.kt | 8 ++- .../FirAnnotationArgumentMapping.kt | 8 ++- .../fir/expressions/FirAnnotationCall.kt | 8 ++- .../FirAnonymousFunctionExpression.kt | 8 ++- .../FirAnonymousObjectExpression.kt | 8 ++- .../kotlin/fir/expressions/FirArgumentList.kt | 8 ++- .../kotlin/fir/expressions/FirArrayLiteral.kt | 8 ++- .../FirAssignmentOperatorStatement.kt | 8 ++- .../expressions/FirAugmentedArraySetCall.kt | 8 ++- .../expressions/FirBinaryLogicExpression.kt | 8 ++- .../kotlin/fir/expressions/FirBlock.kt | 8 ++- .../fir/expressions/FirBreakExpression.kt | 8 ++- .../kotlin/fir/expressions/FirCall.kt | 8 ++- .../expressions/FirCallableReferenceAccess.kt | 8 ++- .../kotlin/fir/expressions/FirCatch.kt | 8 ++- .../fir/expressions/FirCheckNotNullCall.kt | 8 ++- .../expressions/FirCheckedSafeCallSubject.kt | 8 ++- .../FirClassReferenceExpression.kt | 8 ++- .../expressions/FirComparisonExpression.kt | 8 ++- .../fir/expressions/FirComponentCall.kt | 8 ++- .../fir/expressions/FirConstExpression.kt | 8 ++- .../FirContextReceiverArgumentListOwner.kt | 8 ++- .../fir/expressions/FirContinueExpression.kt | 8 ++- .../FirDelegatedConstructorCall.kt | 8 ++- ...garedAssignmentValueReferenceExpression.kt | 8 ++- .../kotlin/fir/expressions/FirDoWhileLoop.kt | 8 ++- .../fir/expressions/FirElvisExpression.kt | 8 ++- ...irEnumEntryDeserializedAccessExpression.kt | 8 ++- .../expressions/FirEqualityOperatorCall.kt | 8 ++- .../fir/expressions/FirErrorAnnotationCall.kt | 8 ++- .../fir/expressions/FirErrorExpression.kt | 8 ++- .../kotlin/fir/expressions/FirErrorLoop.kt | 8 ++- .../expressions/FirErrorResolvedQualifier.kt | 8 ++- .../kotlin/fir/expressions/FirExpression.kt | 8 ++- .../kotlin/fir/expressions/FirFunctionCall.kt | 8 ++- .../kotlin/fir/expressions/FirGetClassCall.kt | 8 ++- .../fir/expressions/FirImplicitInvokeCall.kt | 8 ++- .../FirInaccessibleReceiverExpression.kt | 8 ++- .../FirIncrementDecrementExpression.kt | 8 ++- .../FirIntegerLiteralOperatorCall.kt | 8 ++- .../kotlin/fir/expressions/FirJump.kt | 8 ++- .../FirLambdaArgumentExpression.kt | 8 ++- .../kotlin/fir/expressions/FirLazyBlock.kt | 8 ++- .../fir/expressions/FirLazyExpression.kt | 8 ++- .../kotlin/fir/expressions/FirLoop.kt | 8 ++- .../kotlin/fir/expressions/FirLoopJump.kt | 8 ++- .../FirMultiDelegatedConstructorCall.kt | 8 ++- .../expressions/FirNamedArgumentExpression.kt | 8 ++- .../FirPropertyAccessExpression.kt | 8 ++- .../FirQualifiedAccessExpression.kt | 8 ++- .../FirQualifiedErrorAccessExpression.kt | 8 ++- .../kotlin/fir/expressions/FirResolvable.kt | 8 ++- .../fir/expressions/FirResolvedQualifier.kt | 8 ++- .../FirResolvedReifiedParameterReference.kt | 8 ++- .../fir/expressions/FirReturnExpression.kt | 8 ++- .../fir/expressions/FirSafeCallExpression.kt | 8 ++- .../fir/expressions/FirSmartCastExpression.kt | 8 ++- .../FirSpreadArgumentExpression.kt | 8 ++- .../kotlin/fir/expressions/FirStatement.kt | 8 ++- .../expressions/FirStringConcatenationCall.kt | 8 ++- .../expressions/FirThisReceiverExpression.kt | 8 ++- .../fir/expressions/FirThrowExpression.kt | 8 ++- .../fir/expressions/FirTryExpression.kt | 8 ++- .../fir/expressions/FirTypeOperatorCall.kt | 8 ++- .../FirVarargArgumentsExpression.kt | 8 ++- .../fir/expressions/FirVariableAssignment.kt | 8 ++- .../kotlin/fir/expressions/FirWhenBranch.kt | 8 ++- .../fir/expressions/FirWhenExpression.kt | 8 ++- .../expressions/FirWhenSubjectExpression.kt | 8 ++- .../kotlin/fir/expressions/FirWhileLoop.kt | 8 ++- .../FirWrappedArgumentExpression.kt | 8 ++- .../FirWrappedDelegateExpression.kt | 8 ++- .../fir/expressions/FirWrappedExpression.kt | 8 ++- .../builder/FirAbstractFunctionCallBuilder.kt | 8 ++- .../FirAbstractResolvedQualifierBuilder.kt | 8 ++- .../builder/FirAnnotationBuilder.kt | 8 ++- .../builder/FirAnnotationCallBuilder.kt | 8 ++- .../builder/FirArrayLiteralBuilder.kt | 8 ++- .../FirAssignmentOperatorStatementBuilder.kt | 8 ++- .../FirAugmentedArraySetCallBuilder.kt | 8 ++- .../FirBinaryLogicExpressionBuilder.kt | 8 ++- .../expressions/builder/FirBlockBuilder.kt | 8 ++- .../builder/FirBreakExpressionBuilder.kt | 8 ++- .../fir/expressions/builder/FirCallBuilder.kt | 8 ++- .../FirCallableReferenceAccessBuilder.kt | 8 ++- .../expressions/builder/FirCatchBuilder.kt | 8 ++- .../builder/FirCheckNotNullCallBuilder.kt | 8 ++- .../FirCheckedSafeCallSubjectBuilder.kt | 8 ++- .../FirClassReferenceExpressionBuilder.kt | 8 ++- .../builder/FirComparisonExpressionBuilder.kt | 8 ++- .../builder/FirComponentCallBuilder.kt | 8 ++- .../builder/FirContinueExpressionBuilder.kt | 8 ++- .../FirDelegatedConstructorCallBuilder.kt | 8 ++- ...signmentValueReferenceExpressionBuilder.kt | 8 ++- .../builder/FirDoWhileLoopBuilder.kt | 8 ++- .../builder/FirElseIfTrueConditionBuilder.kt | 8 ++- .../builder/FirElvisExpressionBuilder.kt | 8 ++- .../builder/FirEmptyExpressionBlockBuilder.kt | 8 ++- ...ntryDeserializedAccessExpressionBuilder.kt | 8 ++- .../builder/FirEqualityOperatorCallBuilder.kt | 8 ++- .../builder/FirErrorAnnotationCallBuilder.kt | 8 ++- .../builder/FirErrorExpressionBuilder.kt | 8 ++- .../builder/FirErrorLoopBuilder.kt | 8 ++- .../FirErrorResolvedQualifierBuilder.kt | 8 ++- .../builder/FirExpressionBuilder.kt | 8 ++- .../builder/FirExpressionStubBuilder.kt | 8 ++- .../builder/FirFunctionCallBuilder.kt | 8 ++- .../builder/FirGetClassCallBuilder.kt | 8 ++- .../builder/FirImplicitInvokeCallBuilder.kt | 8 ++- ...irInaccessibleReceiverExpressionBuilder.kt | 8 ++- .../FirIncrementDecrementExpressionBuilder.kt | 8 ++- .../FirIntegerLiteralOperatorCallBuilder.kt | 8 ++- .../FirLambdaArgumentExpressionBuilder.kt | 8 ++- .../builder/FirLazyBlockBuilder.kt | 8 ++- .../FirLazyDelegatedConstructorCallBuilder.kt | 8 ++- .../builder/FirLazyExpressionBuilder.kt | 8 ++- .../fir/expressions/builder/FirLoopBuilder.kt | 8 ++- .../expressions/builder/FirLoopJumpBuilder.kt | 8 ++- ...FirMultiDelegatedConstructorCallBuilder.kt | 8 ++- .../FirNamedArgumentExpressionBuilder.kt | 8 ++- .../FirPropertyAccessExpressionBuilder.kt | 8 ++- .../FirQualifiedAccessExpressionBuilder.kt | 8 ++- ...irQualifiedErrorAccessExpressionBuilder.kt | 8 ++- .../builder/FirResolvedQualifierBuilder.kt | 8 ++- ...esolvedReifiedParameterReferenceBuilder.kt | 8 ++- .../builder/FirReturnExpressionBuilder.kt | 8 ++- .../builder/FirSafeCallExpressionBuilder.kt | 8 ++- .../builder/FirSmartCastExpressionBuilder.kt | 8 ++- .../FirSpreadArgumentExpressionBuilder.kt | 8 ++- .../FirStringConcatenationCallBuilder.kt | 8 ++- .../FirThisReceiverExpressionBuilder.kt | 8 ++- .../builder/FirThrowExpressionBuilder.kt | 8 ++- .../builder/FirTryExpressionBuilder.kt | 8 ++- .../builder/FirTypeOperatorCallBuilder.kt | 8 ++- .../builder/FirUnitExpressionBuilder.kt | 8 ++- .../FirVarargArgumentsExpressionBuilder.kt | 8 ++- .../builder/FirVariableAssignmentBuilder.kt | 8 ++- .../builder/FirWhenBranchBuilder.kt | 8 ++- .../builder/FirWhenExpressionBuilder.kt | 8 ++- .../FirWhenSubjectExpressionBuilder.kt | 8 ++- .../builder/FirWhileLoopBuilder.kt | 8 ++- .../FirWrappedDelegateExpressionBuilder.kt | 8 ++- .../expressions/impl/FirAnnotationCallImpl.kt | 8 ++- .../fir/expressions/impl/FirAnnotationImpl.kt | 8 ++- .../expressions/impl/FirArrayLiteralImpl.kt | 8 ++- .../FirAssignmentOperatorStatementImpl.kt | 8 ++- .../impl/FirAugmentedArraySetCallImpl.kt | 8 ++- .../impl/FirBinaryLogicExpressionImpl.kt | 8 ++- .../fir/expressions/impl/FirBlockImpl.kt | 8 ++- .../impl/FirBreakExpressionImpl.kt | 8 ++- .../impl/FirCallableReferenceAccessImpl.kt | 8 ++- .../fir/expressions/impl/FirCatchImpl.kt | 8 ++- .../impl/FirCheckNotNullCallImpl.kt | 8 ++- .../impl/FirCheckedSafeCallSubjectImpl.kt | 8 ++- .../impl/FirClassReferenceExpressionImpl.kt | 8 ++- .../impl/FirComparisonExpressionImpl.kt | 8 ++- .../expressions/impl/FirComponentCallImpl.kt | 8 ++- .../impl/FirConstExpressionImpl.kt | 8 ++- .../impl/FirContinueExpressionImpl.kt | 8 ++- .../impl/FirDelegatedConstructorCallImpl.kt | 8 ++- ...dAssignmentValueReferenceExpressionImpl.kt | 8 ++- .../expressions/impl/FirDoWhileLoopImpl.kt | 8 ++- .../impl/FirElseIfTrueCondition.kt | 8 ++- .../impl/FirElvisExpressionImpl.kt | 8 ++- .../impl/FirEmptyExpressionBlock.kt | 8 ++- ...umEntryDeserializedAccessExpressionImpl.kt | 8 ++- .../impl/FirEqualityOperatorCallImpl.kt | 8 ++- .../impl/FirErrorAnnotationCallImpl.kt | 8 ++- .../impl/FirErrorExpressionImpl.kt | 8 ++- .../fir/expressions/impl/FirErrorLoopImpl.kt | 8 ++- .../impl/FirErrorResolvedQualifierImpl.kt | 8 ++- .../fir/expressions/impl/FirExpressionStub.kt | 8 ++- .../expressions/impl/FirFunctionCallImpl.kt | 8 ++- .../expressions/impl/FirGetClassCallImpl.kt | 8 ++- .../impl/FirImplicitInvokeCallImpl.kt | 8 ++- .../FirInaccessibleReceiverExpressionImpl.kt | 8 ++- .../FirIncrementDecrementExpressionImpl.kt | 8 ++- .../impl/FirIntegerLiteralOperatorCallImpl.kt | 8 ++- .../impl/FirLambdaArgumentExpressionImpl.kt | 8 ++- .../fir/expressions/impl/FirLazyBlockImpl.kt | 8 ++- .../impl/FirLazyDelegatedConstructorCall.kt | 8 ++- .../expressions/impl/FirLazyExpressionImpl.kt | 8 ++- .../FirMultiDelegatedConstructorCallImpl.kt | 8 ++- .../impl/FirNamedArgumentExpressionImpl.kt | 8 ++- .../impl/FirPropertyAccessExpressionImpl.kt | 8 ++- .../FirQualifiedErrorAccessExpressionImpl.kt | 8 ++- .../impl/FirResolvedQualifierImpl.kt | 8 ++- ...irResolvedReifiedParameterReferenceImpl.kt | 8 ++- .../impl/FirReturnExpressionImpl.kt | 8 ++- .../impl/FirSafeCallExpressionImpl.kt | 8 ++- .../impl/FirSmartCastExpressionImpl.kt | 8 ++- .../impl/FirSpreadArgumentExpressionImpl.kt | 8 ++- .../impl/FirStringConcatenationCallImpl.kt | 8 ++- .../impl/FirThisReceiverExpressionImpl.kt | 8 ++- .../impl/FirThrowExpressionImpl.kt | 8 ++- .../expressions/impl/FirTryExpressionImpl.kt | 8 ++- .../impl/FirTypeOperatorCallImpl.kt | 8 ++- .../fir/expressions/impl/FirUnitExpression.kt | 8 ++- .../impl/FirVarargArgumentsExpressionImpl.kt | 8 ++- .../impl/FirVariableAssignmentImpl.kt | 8 ++- .../fir/expressions/impl/FirWhenBranchImpl.kt | 8 ++- .../expressions/impl/FirWhenExpressionImpl.kt | 8 ++- .../impl/FirWhenSubjectExpressionImpl.kt | 8 ++- .../fir/expressions/impl/FirWhileLoopImpl.kt | 8 ++- .../impl/FirWrappedDelegateExpressionImpl.kt | 8 ++- .../impl/FirFileAnnotationsContainerImpl.kt | 8 ++- .../fir/impl/FirFunctionTypeParameterImpl.kt | 8 ++- .../jetbrains/kotlin/fir/impl/FirLabelImpl.kt | 8 ++- .../fir/impl/FirPackageDirectiveImpl.kt | 8 ++- .../references/FirBackingFieldReference.kt | 8 ++- .../FirControlFlowGraphReference.kt | 8 ++- .../references/FirDelegateFieldReference.kt | 8 ++- .../fir/references/FirErrorNamedReference.kt | 8 ++- ...irFromMissingDependenciesNamedReference.kt | 8 ++- .../fir/references/FirNamedReference.kt | 8 ++- .../FirNamedReferenceWithCandidateBase.kt | 8 ++- .../kotlin/fir/references/FirReference.kt | 8 ++- .../FirResolvedCallableReference.kt | 8 ++- .../references/FirResolvedErrorReference.kt | 8 ++- .../references/FirResolvedNamedReference.kt | 8 ++- .../fir/references/FirSuperReference.kt | 8 ++- .../kotlin/fir/references/FirThisReference.kt | 8 ++- .../FirBackingFieldReferenceBuilder.kt | 8 ++- .../FirDelegateFieldReferenceBuilder.kt | 8 ++- .../builder/FirErrorNamedReferenceBuilder.kt | 8 ++- .../FirExplicitSuperReferenceBuilder.kt | 8 ++- .../FirExplicitThisReferenceBuilder.kt | 8 ++- ...issingDependenciesNamedReferenceBuilder.kt | 8 ++- .../FirImplicitThisReferenceBuilder.kt | 8 ++- ...mParameterResolvedNamedReferenceBuilder.kt | 8 ++- .../FirResolvedCallableReferenceBuilder.kt | 8 ++- .../FirResolvedErrorReferenceBuilder.kt | 8 ++- .../FirResolvedNamedReferenceBuilder.kt | 8 ++- .../builder/FirSimpleNamedReferenceBuilder.kt | 8 ++- .../impl/FirBackingFieldReferenceImpl.kt | 8 ++- .../impl/FirDelegateFieldReferenceImpl.kt | 8 ++- .../impl/FirErrorNamedReferenceImpl.kt | 8 ++- .../impl/FirExplicitSuperReference.kt | 8 ++- .../impl/FirExplicitThisReference.kt | 8 ++- ...omMissingDependenciesNamedReferenceImpl.kt | 8 ++- .../impl/FirImplicitThisReference.kt | 8 ++- ...ertyFromParameterResolvedNamedReference.kt | 8 ++- .../impl/FirResolvedCallableReferenceImpl.kt | 8 ++- .../impl/FirResolvedErrorReferenceImpl.kt | 8 ++- .../impl/FirResolvedNamedReferenceImpl.kt | 8 ++- .../impl/FirSimpleNamedReference.kt | 8 ++- .../fir/references/impl/FirStubReference.kt | 8 ++- .../kotlin/fir/types/FirDynamicTypeRef.kt | 8 ++- .../kotlin/fir/types/FirErrorTypeRef.kt | 8 ++- .../kotlin/fir/types/FirFunctionTypeRef.kt | 8 ++- .../kotlin/fir/types/FirImplicitTypeRef.kt | 8 ++- .../fir/types/FirIntersectionTypeRef.kt | 8 ++- .../fir/types/FirPlaceholderProjection.kt | 8 ++- .../kotlin/fir/types/FirResolvedTypeRef.kt | 8 ++- .../kotlin/fir/types/FirStarProjection.kt | 8 ++- .../kotlin/fir/types/FirTypeProjection.kt | 8 ++- .../types/FirTypeProjectionWithVariance.kt | 8 ++- .../jetbrains/kotlin/fir/types/FirTypeRef.kt | 8 ++- .../fir/types/FirTypeRefWithNullability.kt | 8 ++- .../kotlin/fir/types/FirUserTypeRef.kt | 8 ++- .../types/builder/FirDynamicTypeRefBuilder.kt | 8 ++- .../builder/FirFunctionTypeRefBuilder.kt | 8 ++- .../builder/FirIntersectionTypeRefBuilder.kt | 8 ++- .../FirPlaceholderProjectionBuilder.kt | 8 ++- .../builder/FirResolvedTypeRefBuilder.kt | 8 ++- .../types/builder/FirStarProjectionBuilder.kt | 8 ++- .../FirTypeProjectionWithVarianceBuilder.kt | 8 ++- .../fir/types/impl/FirDynamicTypeRefImpl.kt | 8 ++- .../fir/types/impl/FirFunctionTypeRefImpl.kt | 8 ++- .../types/impl/FirIntersectionTypeRefImpl.kt | 8 ++- .../impl/FirPlaceholderProjectionImpl.kt | 8 ++- .../fir/types/impl/FirResolvedTypeRefImpl.kt | 8 ++- .../fir/types/impl/FirStarProjectionImpl.kt | 8 ++- .../impl/FirTypeProjectionWithVarianceImpl.kt | 8 ++- .../kotlin/fir/visitors/FirDefaultVisitor.kt | 8 ++- .../fir/visitors/FirDefaultVisitorVoid.kt | 8 ++- .../kotlin/fir/visitors/FirTransformer.kt | 8 ++- .../kotlin/fir/visitors/FirVisitor.kt | 8 ++- .../kotlin/fir/visitors/FirVisitorVoid.kt | 8 ++- .../fir/tree/generator/printer/builder.kt | 17 ++----- .../fir/tree/generator/printer/element.kt | 17 ++----- .../tree/generator/printer/implementation.kt | 17 ++----- .../kotlin/fir/tree/generator/printer/main.kt | 15 ++---- .../fir/tree/generator/printer/transformer.kt | 18 ++----- .../fir/tree/generator/printer/utils.kt | 3 -- .../fir/tree/generator/printer/visitor.kt | 43 +++------------- .../kotlin/ir/generator/print/Common.kt | 22 +++------ .../kotlin/ir/generator/print/Factory.kt | 4 +- .../print/VisitorsAndTransformers.kt | 2 +- .../kotlin/ir/generator/util/Utils.kt | 3 -- .../kotlin/generators/tree/printer/common.kt | 49 +++++++++++++++++++ 438 files changed, 1373 insertions(+), 2233 deletions(-) create mode 100644 generators/tree-generator-common/src/org/jetbrains/kotlin/generators/tree/printer/common.kt diff --git a/analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts b/analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts index 22828d0fb75..52ba7baf04b 100644 --- a/analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts +++ b/analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts @@ -5,6 +5,7 @@ plugins { } dependencies { + implementation(project(":generators")) implementation(project(":compiler:resolution.common")) implementation(project(":compiler:fir:tree")) implementation(project(":compiler:fir:tree:tree-generator")) diff --git a/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt b/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt index 94ff7342c8e..21dad2496c8 100644 --- a/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt +++ b/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt @@ -6,8 +6,6 @@ package org.jetbrains.kotlin.analysis.api.fir.generator import org.jetbrains.kotlin.fir.checkers.generator.printImports -import org.jetbrains.kotlin.fir.tree.generator.printer.printCopyright -import org.jetbrains.kotlin.fir.tree.generator.printer.printGeneratedMessage import org.jetbrains.kotlin.fir.tree.generator.util.writeToFileUsingSmartPrinterIfFileContentChanged import org.jetbrains.kotlin.utils.SmartPrinter import org.jetbrains.kotlin.utils.withIndent diff --git a/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/Main.kt b/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/Main.kt index 9c60ffa04a3..10a287ef965 100644 --- a/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/Main.kt +++ b/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/Main.kt @@ -11,6 +11,22 @@ import java.nio.file.Paths import org.jetbrains.kotlin.analysis.api.fir.generator.DiagnosticClassGenerator.generate import org.jetbrains.kotlin.fir.builder.SYNTAX_DIAGNOSTIC_LIST import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.JS_DIAGNOSTICS_LIST +import org.jetbrains.kotlin.generators.util.GeneratorsFileUtil +import org.jetbrains.kotlin.utils.SmartPrinter +import java.io.File + +private val COPYRIGHT = File("license/COPYRIGHT_HEADER.txt").readText() + +internal fun SmartPrinter.printCopyright() { + println(COPYRIGHT) + println() +} + +internal fun SmartPrinter.printGeneratedMessage() { + println(GeneratorsFileUtil.GENERATED_MESSAGE) + println() +} + fun main() { val rootPath = Paths.get("analysis/analysis-api-fir/src").toAbsolutePath() diff --git a/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt b/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt index 285f9fc015f..894fa9699d9 100644 --- a/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt +++ b/analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt @@ -5,17 +5,12 @@ package org.jetbrains.kotlin.analysis.api.fir.generator.rendererrs +import org.jetbrains.kotlin.analysis.api.fir.generator.* import org.jetbrains.kotlin.fir.checkers.generator.collectClassNamesTo import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.model.DiagnosticList import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.model.DiagnosticListRenderer import org.jetbrains.kotlin.fir.checkers.generator.printImports -import org.jetbrains.kotlin.fir.tree.generator.printer.printCopyright -import org.jetbrains.kotlin.fir.tree.generator.printer.printGeneratedMessage import org.jetbrains.kotlin.fir.tree.generator.util.writeToFileUsingSmartPrinterIfFileContentChanged -import org.jetbrains.kotlin.analysis.api.fir.generator.HLDiagnosticConverter -import org.jetbrains.kotlin.analysis.api.fir.generator.HLDiagnosticList -import org.jetbrains.kotlin.analysis.api.fir.generator.HLDiagnosticParameter -import org.jetbrains.kotlin.analysis.api.fir.generator.simpleName import org.jetbrains.kotlin.utils.SmartPrinter import java.io.File import kotlin.reflect.KType diff --git a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/Generator.kt b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/Generator.kt index c5c8c5eec4c..fc2aa6f00f1 100644 --- a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/Generator.kt +++ b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/Generator.kt @@ -5,8 +5,6 @@ package org.jetbrains.kotlin.fir.checkers.generator -import org.jetbrains.kotlin.fir.tree.generator.printer.printCopyright -import org.jetbrains.kotlin.fir.tree.generator.printer.printGeneratedMessage import org.jetbrains.kotlin.fir.tree.generator.util.writeToFileUsingSmartPrinterIfFileContentChanged import org.jetbrains.kotlin.utils.SmartPrinter import org.jetbrains.kotlin.utils.withIndent diff --git a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/NonSuppressibleErrorNamesGenerator.kt b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/NonSuppressibleErrorNamesGenerator.kt index c1eee7f22d8..c217e076fbc 100644 --- a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/NonSuppressibleErrorNamesGenerator.kt +++ b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/NonSuppressibleErrorNamesGenerator.kt @@ -12,8 +12,6 @@ import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.JS_DIAGNOSTICS_LI import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.JVM_DIAGNOSTICS_LIST import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.NATIVE_DIAGNOSTICS_LIST import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.model.RegularDiagnosticData -import org.jetbrains.kotlin.fir.tree.generator.printer.printCopyright -import org.jetbrains.kotlin.fir.tree.generator.printer.printGeneratedMessage import org.jetbrains.kotlin.fir.tree.generator.util.writeToFileUsingSmartPrinterIfFileContentChanged import java.io.File diff --git a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/diagnostics/model/ErrorListDiagnosticListRenderer.kt b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/diagnostics/model/ErrorListDiagnosticListRenderer.kt index 35956d2359e..0881fc6cfac 100644 --- a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/diagnostics/model/ErrorListDiagnosticListRenderer.kt +++ b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/diagnostics/model/ErrorListDiagnosticListRenderer.kt @@ -5,11 +5,8 @@ package org.jetbrains.kotlin.fir.checkers.generator.diagnostics.model -import org.jetbrains.kotlin.fir.checkers.generator.collectClassNamesTo -import org.jetbrains.kotlin.fir.checkers.generator.inBracketsWithIndent -import org.jetbrains.kotlin.fir.checkers.generator.printImports -import org.jetbrains.kotlin.fir.tree.generator.printer.printCopyright -import org.jetbrains.kotlin.fir.tree.generator.printer.printGeneratedMessage +import org.jetbrains.kotlin.fir.checkers.generator.* +import org.jetbrains.kotlin.fir.checkers.generator.printCopyright import org.jetbrains.kotlin.fir.tree.generator.util.writeToFileUsingSmartPrinterIfFileContentChanged import org.jetbrains.kotlin.utils.SmartPrinter import java.io.File diff --git a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/utils.kt b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/utils.kt index 55fa3316ead..fb9712204dc 100644 --- a/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/utils.kt +++ b/compiler/fir/checkers/checkers-component-generator/src/org/jetbrains/kotlin/fir/checkers/generator/utils.kt @@ -5,10 +5,25 @@ package org.jetbrains.kotlin.fir.checkers.generator +import org.jetbrains.kotlin.generators.util.GeneratorsFileUtil +import org.jetbrains.kotlin.utils.SmartPrinter import java.io.File import kotlin.reflect.KClass import kotlin.reflect.KType +private val COPYRIGHT = File("license/COPYRIGHT_HEADER.txt").readText() + +internal fun SmartPrinter.printCopyright() { + println(COPYRIGHT) + println() +} + +internal fun SmartPrinter.printGeneratedMessage() { + println(GeneratorsFileUtil.GENERATED_MESSAGE) + println() +} + + fun getGenerationPath(rootPath: File, packageName: String): File = packageName .split(".") diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirAnnotationContainer.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirAnnotationContainer.kt index 54dfcdd4f80..a278d719333 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirAnnotationContainer.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirAnnotationContainer.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirAnnotationContainer : FirElement { override val source: KtSourceElement? val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElement.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElement.kt index ecf7bd00085..38fd37c4c21 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElement.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElement.kt @@ -3,16 +3,14 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirElement { val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElementWithResolveState.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElementWithResolveState.kt index 5eff2d10063..06d03c495a4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElementWithResolveState.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirElementWithResolveState.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.declarations.asResolveState import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirElementWithResolveState : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? @Volatile diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFileAnnotationsContainer.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFileAnnotationsContainer.kt index 5a5ea7dbdb0..5d811285d7e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFileAnnotationsContainer.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFileAnnotationsContainer.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirFileSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirFileAnnotationsContainer : FirElementWithResolveState(), FirAnnotationContainer { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFunctionTypeParameter.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFunctionTypeParameter.kt index 419a2ca08e9..2cadcd7e4d5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFunctionTypeParameter.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirFunctionTypeParameter.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirFunctionTypeParameter : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val name: Name? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirLabel.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirLabel.kt index f395769c22c..962f8c9a178 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirLabel.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirLabel.kt @@ -3,16 +3,14 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirLabel : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val name: String diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirPackageDirective.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirPackageDirective.kt index 3ad45d9b7d2..8428c061e64 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirPackageDirective.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirPackageDirective.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirPackageDirective : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val packageFqName: FqName diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirTargetElement.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirTargetElement.kt index 93c2e32c516..613508e18b8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirTargetElement.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/FirTargetElement.kt @@ -3,16 +3,14 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirTargetElement : FirElement { override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirAnnotationContainerBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirAnnotationContainerBuilder.kt index 0081c4f993f..c7b8b2cebd2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirAnnotationContainerBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirAnnotationContainerBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.builder @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.builder.FirBuilderDsl import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirAnnotationContainerBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFileAnnotationsContainerBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFileAnnotationsContainerBuilder.kt index a8425282c8f..3bb0d8c819c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFileAnnotationsContainerBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFileAnnotationsContainerBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.impl.FirFileAnnotationsContainerImpl import org.jetbrains.kotlin.fir.symbols.impl.FirFileSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirFileAnnotationsContainerBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFunctionTypeParameterBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFunctionTypeParameterBuilder.kt index 94cf36a334a..8507fdbaf91 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFunctionTypeParameterBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirFunctionTypeParameterBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirFunctionTypeParameterBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirLabelBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirLabelBuilder.kt index b3fd58fd2fd..7528076ec58 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirLabelBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirLabelBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.builder @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.builder.FirBuilderDsl import org.jetbrains.kotlin.fir.impl.FirLabelImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirLabelBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirPackageDirectiveBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirPackageDirectiveBuilder.kt index d6ad7b5dc9a..b0a0ff8f84a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirPackageDirectiveBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/builder/FirPackageDirectiveBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.impl.FirPackageDirectiveImpl import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.FqName -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPackageDirectiveBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractDescription.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractDescription.kt index d9e2dc3f77d..c87638e7ffc 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractDescription.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractDescription.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.contracts import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirContractDescription : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractElementDeclaration.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractElementDeclaration.kt index fd0338b853f..2badaef1038 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractElementDeclaration.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirContractElementDeclaration.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.contracts import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.contracts.description.ConeContractDescriptionElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirContractElementDeclaration : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val effect: ConeContractDescriptionElement diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirEffectDeclaration.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirEffectDeclaration.kt index 202ef9af6ee..0904c7faa73 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirEffectDeclaration.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirEffectDeclaration.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.contracts import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.contracts.description.ConeEffectDeclaration import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirEffectDeclaration : FirContractElementDeclaration() { abstract override val source: KtSourceElement? abstract override val effect: ConeEffectDeclaration diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirLegacyRawContractDescription.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirLegacyRawContractDescription.kt index 5d2182a19b1..e771e7fd866 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirLegacyRawContractDescription.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirLegacyRawContractDescription.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.contracts import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirFunctionCall import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirLegacyRawContractDescription : FirContractDescription() { abstract override val source: KtSourceElement? abstract val contractCall: FirFunctionCall diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirRawContractDescription.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirRawContractDescription.kt index 772a4622ae2..4cbe675f69d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirRawContractDescription.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirRawContractDescription.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.contracts import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirExpression import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirRawContractDescription : FirContractDescription() { abstract override val source: KtSourceElement? abstract val rawEffects: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirResolvedContractDescription.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirResolvedContractDescription.kt index 19550eaff08..33e3ab7c9f2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirResolvedContractDescription.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/FirResolvedContractDescription.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.contracts import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedContractDescription : FirContractDescription() { abstract override val source: KtSourceElement? abstract val effects: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirContractElementDeclarationBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirContractElementDeclarationBuilder.kt index fafcc13abb9..19b55d63257 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirContractElementDeclarationBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirContractElementDeclarationBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.contracts.description.ConeContractDescriptionEle import org.jetbrains.kotlin.fir.contracts.impl.FirContractElementDeclarationImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirContractElementDeclarationBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirEffectDeclarationBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirEffectDeclarationBuilder.kt index f2837ed15f8..b7c21591dc0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirEffectDeclarationBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirEffectDeclarationBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.contracts.description.ConeEffectDeclaration import org.jetbrains.kotlin.fir.contracts.impl.FirEffectDeclarationImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirEffectDeclarationBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirLegacyRawContractDescriptionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirLegacyRawContractDescriptionBuilder.kt index 14f1befce5d..611b9d6b969 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirLegacyRawContractDescriptionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirLegacyRawContractDescriptionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.contracts.impl.FirLegacyRawContractDescriptionIm import org.jetbrains.kotlin.fir.expressions.FirFunctionCall import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirLegacyRawContractDescriptionBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirRawContractDescriptionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirRawContractDescriptionBuilder.kt index a1315669a97..9a28c56b522 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirRawContractDescriptionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirRawContractDescriptionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.contracts.impl.FirRawContractDescriptionImpl import org.jetbrains.kotlin.fir.expressions.FirExpression import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirRawContractDescriptionBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirResolvedContractDescriptionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirResolvedContractDescriptionBuilder.kt index 0c92e407b6f..1447a9bf850 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirResolvedContractDescriptionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/builder/FirResolvedContractDescriptionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription import org.jetbrains.kotlin.fir.contracts.impl.FirResolvedContractDescriptionImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedContractDescriptionBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirContractElementDeclarationImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirContractElementDeclarationImpl.kt index 9ba4c541c02..01042d564f4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirContractElementDeclarationImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirContractElementDeclarationImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.contracts.FirContractElementDeclaration import org.jetbrains.kotlin.fir.contracts.description.ConeContractDescriptionElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirContractElementDeclarationImpl( override val source: KtSourceElement?, override val effect: ConeContractDescriptionElement, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirEffectDeclarationImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirEffectDeclarationImpl.kt index cc3c7b6c9e4..38fc948b73b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirEffectDeclarationImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirEffectDeclarationImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.contracts.FirEffectDeclaration import org.jetbrains.kotlin.fir.contracts.description.ConeEffectDeclaration import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirEffectDeclarationImpl( override val source: KtSourceElement?, override val effect: ConeEffectDeclaration, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirLegacyRawContractDescriptionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirLegacyRawContractDescriptionImpl.kt index 254a9059c2a..88d8d5c0bc0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirLegacyRawContractDescriptionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirLegacyRawContractDescriptionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.contracts.FirLegacyRawContractDescription import org.jetbrains.kotlin.fir.expressions.FirFunctionCall import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirLegacyRawContractDescriptionImpl( override val source: KtSourceElement?, override var contractCall: FirFunctionCall, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirRawContractDescriptionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirRawContractDescriptionImpl.kt index f038dc9821c..fdfa69f6e8a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirRawContractDescriptionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirRawContractDescriptionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.contracts.FirRawContractDescription import org.jetbrains.kotlin.fir.expressions.FirExpression import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirRawContractDescriptionImpl( override val source: KtSourceElement?, override val rawEffects: MutableList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirResolvedContractDescriptionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirResolvedContractDescriptionImpl.kt index ec441b72cad..a280b9741f0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirResolvedContractDescriptionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/contracts/impl/FirResolvedContractDescriptionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.contracts.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.contracts.FirEffectDeclaration import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirResolvedContractDescriptionImpl( override val source: KtSourceElement?, override val effects: MutableList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousFunction.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousFunction.kt index 096df0bf077..09acc226513 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousFunction.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousFunction.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnonymousFunction : FirFunction(), FirTypeParametersOwner, FirContractDescriptionOwner { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousInitializer.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousInitializer.kt index 067630c26ca..9783f988d6f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousInitializer.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousInitializer.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.types.ConeClassLikeType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnonymousInitializer : FirDeclaration(), FirControlFlowGraphOwner { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousObject.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousObject.kt index b9e0e787bfb..6b4e9b98955 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousObject.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirAnonymousObject.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnonymousObject : FirClass() { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirBackingField.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirBackingField.kt index 2ed9f99d542..29d8297ecb4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirBackingField.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirBackingField.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirBackingField : FirVariable(), FirTypeParametersOwner, FirStatement { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCallableDeclaration.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCallableDeclaration.kt index 0b0a8643796..a1c63e9439a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCallableDeclaration.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCallableDeclaration.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirCallableDeclaration : FirMemberDeclaration() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClass.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClass.kt index db26e2fac19..41a60ecf630 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClass.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClass.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirClass : FirClassLikeDeclaration(), FirStatement, FirTypeParameterRefsOwner, FirControlFlowGraphOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClassLikeDeclaration.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClassLikeDeclaration.kt index 34743c38f51..44a5653dfd9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClassLikeDeclaration.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirClassLikeDeclaration.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirClassLikeSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirClassLikeDeclaration : FirMemberDeclaration(), FirStatement { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCodeFragment.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCodeFragment.kt index 24ff357ab66..92b23d6b445 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCodeFragment.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirCodeFragment.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirCodeFragmentSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirCodeFragment : FirDeclaration() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructedClassTypeParameterRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructedClassTypeParameterRef.kt index 35118d83ecb..92d57f3b800 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructedClassTypeParameterRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructedClassTypeParameterRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirConstructedClassTypeParameterRef : FirPureAbstractElement(), FirTypeParameterRef { abstract override val source: KtSourceElement? abstract override val symbol: FirTypeParameterSymbol diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructor.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructor.kt index 4ac344156c0..1f99f5add15 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructor.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirConstructor.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirConstructor : FirFunction(), FirTypeParameterRefsOwner, FirContractDescriptionOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContextReceiver.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContextReceiver.kt index 0c840f58163..73e494894ab 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContextReceiver.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContextReceiver.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirContextReceiver : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val typeRef: FirTypeRef diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContractDescriptionOwner.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContractDescriptionOwner.kt index 2e12c2f27bd..471dbf2a605 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContractDescriptionOwner.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirContractDescriptionOwner.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.contracts.FirContractDescription import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed interface FirContractDescriptionOwner : FirElement { override val source: KtSourceElement? val contractDescription: FirContractDescription diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirControlFlowGraphOwner.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirControlFlowGraphOwner.kt index ab43a6a0da5..8fc5cb64bb0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirControlFlowGraphOwner.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirControlFlowGraphOwner.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.references.FirControlFlowGraphReference import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirControlFlowGraphOwner : FirElement { override val source: KtSourceElement? val controlFlowGraphReference: FirControlFlowGraphReference? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDanglingModifierList.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDanglingModifierList.kt index ae5f23f3dc9..8772f931f47 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDanglingModifierList.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDanglingModifierList.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirDanglingModifierSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDanglingModifierList : FirDeclaration(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclaration.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclaration.kt index 41cc9582ce9..187c9eb2baf 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclaration.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclaration.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirDeclaration : FirElementWithResolveState(), FirAnnotationContainer { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclarationStatus.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclarationStatus.kt index 25db6be88b4..8caa3e003f1 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclarationStatus.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirDeclarationStatus.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.descriptors.Visibility import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirDeclarationStatus : FirElement { override val source: KtSourceElement? val visibility: Visibility diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirEnumEntry.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirEnumEntry.kt index 3e9e446f6eb..bc57847e66e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirEnumEntry.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirEnumEntry.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirEnumEntry : FirVariable() { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorFunction.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorFunction.kt index 0e661a5ca76..57d456560b1 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorFunction.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorFunction.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorFunction : FirFunction(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorImport.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorImport.kt index 448158dd313..240f706148a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorImport.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorImport.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorImport : FirImport(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val importedFqName: FqName? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorPrimaryConstructor.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorPrimaryConstructor.kt index dac0b2ecebd..6513f9e02d9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorPrimaryConstructor.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorPrimaryConstructor.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorPrimaryConstructor : FirConstructor(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorProperty.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorProperty.kt index bdcc0780e8e..ffa58b895bb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorProperty.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirErrorProperty.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorProperty : FirVariable(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirField.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirField.kt index 5b8c4069dd8..6051595399a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirField.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirField.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirField : FirVariable(), FirControlFlowGraphOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFile.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFile.kt index 2a8fcdaea5b..f98ec6f84d8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFile.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFile.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirFileSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirFile : FirDeclaration(), FirControlFlowGraphOwner { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFunction.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFunction.kt index 2c61668f0bd..c7a08e658bf 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFunction.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirFunction.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirFunction : FirCallableDeclaration(), FirTargetElement, FirControlFlowGraphOwner, FirStatement { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirImport.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirImport.kt index 286521a3092..0f76dd26079 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirImport.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirImport.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirImport : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val importedFqName: FqName? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirMemberDeclaration.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirMemberDeclaration.kt index eeaa1920e45..53e2a1d9383 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirMemberDeclaration.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirMemberDeclaration.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirMemberDeclaration : FirDeclaration(), FirTypeParameterRefsOwner { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirOuterClassTypeParameterRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirOuterClassTypeParameterRef.kt index 8404b357ef0..0f40cf52961 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirOuterClassTypeParameterRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirOuterClassTypeParameterRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirOuterClassTypeParameterRef : FirPureAbstractElement(), FirTypeParameterRef { abstract override val source: KtSourceElement? abstract override val symbol: FirTypeParameterSymbol diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirProperty.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirProperty.kt index 046b95324a7..b1ce2c1eebd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirProperty.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirProperty.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirProperty : FirVariable(), FirTypeParametersOwner, FirControlFlowGraphOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirPropertyAccessor.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirPropertyAccessor.kt index b017b0f2426..d54c2d4e98d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirPropertyAccessor.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirPropertyAccessor.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirPropertyAccessor : FirFunction(), FirContractDescriptionOwner, FirTypeParametersOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirReceiverParameter.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirReceiverParameter.kt index 548e846f8d1..252750c0a42 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirReceiverParameter.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirReceiverParameter.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirReceiverParameter : FirPureAbstractElement(), FirAnnotationContainer { abstract override val source: KtSourceElement? abstract val typeRef: FirTypeRef diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirRegularClass.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirRegularClass.kt index d875393cd84..d85eaafab9b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirRegularClass.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirRegularClass.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirRegularClass : FirClass() { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedDeclarationStatus.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedDeclarationStatus.kt index e5cc6dfea4c..7edded6b067 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedDeclarationStatus.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedDeclarationStatus.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.descriptors.Visibility import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirResolvedDeclarationStatus : FirDeclarationStatus { override val source: KtSourceElement? override val visibility: Visibility diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedImport.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedImport.kt index 1fbca2d6209..0c1024bfc2b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedImport.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirResolvedImport.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedImport : FirImport() { abstract override val source: KtSourceElement? abstract override val importedFqName: FqName? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirScript.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirScript.kt index 88596fbb0ca..a93cbae7812 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirScript.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirScript.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirScript : FirDeclaration() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirSimpleFunction.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirSimpleFunction.kt index c88d7eb58cd..eea3d81783b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirSimpleFunction.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirSimpleFunction.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirSimpleFunction : FirFunction(), FirContractDescriptionOwner, FirTypeParametersOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeAlias.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeAlias.kt index 8badbe29483..095ea603712 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeAlias.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeAlias.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTypeAlias : FirClassLikeDeclaration(), FirTypeParametersOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameter.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameter.kt index 69e8203d5d9..5a041abf4e5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameter.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameter.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.types.Variance import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTypeParameter : FirTypeParameterRef, FirDeclaration() { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRef.kt index 0ae26bd7159..c9d57c4bf19 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirTypeParameterRef : FirElement { override val source: KtSourceElement? val symbol: FirTypeParameterSymbol diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRefsOwner.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRefsOwner.kt index 4053679ebed..53d0455f55d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRefsOwner.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParameterRefsOwner.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed interface FirTypeParameterRefsOwner : FirElement { override val source: KtSourceElement? val typeParameters: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParametersOwner.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParametersOwner.kt index 1084e231b87..5c2b7043fea 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParametersOwner.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirTypeParametersOwner.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed interface FirTypeParametersOwner : FirTypeParameterRefsOwner { override val source: KtSourceElement? override val typeParameters: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirValueParameter.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirValueParameter.kt index 241cfd97ba5..6a936f3306a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirValueParameter.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirValueParameter.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirValueParameter : FirVariable(), FirControlFlowGraphOwner { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirVariable.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirVariable.kt index 9292704eca8..dd43fcc25c8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirVariable.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/FirVariable.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.declarations import org.jetbrains.kotlin.KtSourceElement @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.serialization.deserialization.descriptors.Deserializ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirVariable : FirCallableDeclaration(), FirStatement { abstract override val source: KtSourceElement? abstract override val moduleData: FirModuleData diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAbstractConstructorBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAbstractConstructorBuilder.kt index e85fd001f8f..1625a5e30ca 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAbstractConstructorBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAbstractConstructorBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -32,11 +35,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirAbstractConstructorBuilder : FirFunctionBuilder { abstract override var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousFunctionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousFunctionBuilder.kt index ebfdef554c9..08406686dca 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousFunctionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousFunctionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -46,11 +49,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitTypeRefImplWithoutSource import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAnonymousFunctionBuilder : FirFunctionBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousInitializerBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousInitializerBuilder.kt index f6f6e8a5a9e..805328227aa 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousInitializerBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousInitializerBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -29,11 +32,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirAnonymousInitializerSymbol import org.jetbrains.kotlin.fir.types.ConeClassLikeType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAnonymousInitializerBuilder : FirDeclarationBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousObjectBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousObjectBuilder.kt index 11a4b565eea..32ce32843e9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousObjectBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirAnonymousObjectBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -36,11 +39,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirAnonymousObjectSymbol import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAnonymousObjectBuilder : FirDeclarationBuilder, FirClassBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirBackingFieldBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirBackingFieldBuilder.kt index 0688bfb864e..7230ad55c18 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirBackingFieldBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirBackingFieldBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -39,11 +42,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirBackingFieldBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirClassBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirClassBuilder.kt index 95a8f4bcd30..ca0965a9d7e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirClassBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirClassBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.scopes.FirScopeProvider import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirClassBuilder : FirDeclarationBuilder, FirAnnotationContainerBuilder { abstract override var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirCodeFragmentBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirCodeFragmentBuilder.kt index b063e02a4dd..b34db671b4a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirCodeFragmentBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirCodeFragmentBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -27,11 +30,6 @@ import org.jetbrains.kotlin.fir.expressions.FirBlock import org.jetbrains.kotlin.fir.symbols.impl.FirCodeFragmentSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirCodeFragmentBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructedClassTypeParameterRefBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructedClassTypeParameterRefBuilder.kt index 8910b080451..bd1f2aac2c0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructedClassTypeParameterRefBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructedClassTypeParameterRefBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.declarations.impl.FirConstructedClassTypeParamet import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirConstructedClassTypeParameterRefBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructorBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructorBuilder.kt index 2cf8d2a8c65..bd7f204953f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructorBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirConstructorBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -42,11 +45,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirConstructorBuilder : FirAbstractConstructorBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirContextReceiverBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirContextReceiverBuilder.kt index 84012767572..20e1c5ee2c5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirContextReceiverBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirContextReceiverBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirContextReceiverBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDanglingModifierListBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDanglingModifierListBuilder.kt index ce8ee25f181..5af54c34523 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDanglingModifierListBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDanglingModifierListBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.symbols.impl.FirDanglingModifierSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDanglingModifierListBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDeclarationBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDeclarationBuilder.kt index 610b3df07d5..7b5e49175e4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDeclarationBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDeclarationBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.declarations.FirResolvePhase import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirDeclarationBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDefaultSetterValueParameterBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDefaultSetterValueParameterBuilder.kt index d9b346ffb79..57638d3a9d4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDefaultSetterValueParameterBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirDefaultSetterValueParameterBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -41,11 +44,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDefaultSetterValueParameterBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirEnumEntryBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirEnumEntryBuilder.kt index 119c162e024..006efca662a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirEnumEntryBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirEnumEntryBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -38,11 +41,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirEnumEntryBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorFunctionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorFunctionBuilder.kt index 134937d680e..c8c0878ce51 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorFunctionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorFunctionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -40,11 +43,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirErrorTypeRefImpl import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorFunctionBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorImportBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorImportBuilder.kt index 62c287ad06a..6b2960b938b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorImportBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorImportBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorImportBuilder { var aliasSource: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPrimaryConstructorBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPrimaryConstructorBuilder.kt index 0b95f1aa412..dedb58fb526 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPrimaryConstructorBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPrimaryConstructorBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -43,11 +46,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorPrimaryConstructorBuilder : FirAbstractConstructorBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPropertyBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPropertyBuilder.kt index c8fa40564bb..8158ddffb0e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPropertyBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirErrorPropertyBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -41,11 +44,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorPropertyBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFieldBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFieldBuilder.kt index 71a824f4a2c..d18bed79753 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFieldBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFieldBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -42,11 +45,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirFieldBuilder : FirVariableBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFileBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFileBuilder.kt index 9632606fd4d..3c9872958df 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFileBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFileBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -32,11 +35,6 @@ import org.jetbrains.kotlin.fir.references.FirControlFlowGraphReference import org.jetbrains.kotlin.fir.symbols.impl.FirFileSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirFileBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFunctionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFunctionBuilder.kt index 76af0ec6682..81ddf7159e4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFunctionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirFunctionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -27,11 +30,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirFunctionBuilder : FirDeclarationBuilder, FirAnnotationContainerBuilder { abstract override var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirImportBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirImportBuilder.kt index 7a0d8c356d2..5ced0c0a7e4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirImportBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirImportBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirImportBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirOuterClassTypeParameterRefBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirOuterClassTypeParameterRefBuilder.kt index 638366247a5..fff970511bd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirOuterClassTypeParameterRefBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirOuterClassTypeParameterRefBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.declarations.impl.FirOuterClassTypeParameterRefI import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirOuterClassTypeParameterRefBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPrimaryConstructorBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPrimaryConstructorBuilder.kt index b8de755d421..9cb900f9043 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPrimaryConstructorBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPrimaryConstructorBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -42,11 +45,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPrimaryConstructorBuilder : FirAbstractConstructorBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyAccessorBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyAccessorBuilder.kt index 652204a9628..458f1cf2790 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyAccessorBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyAccessorBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -44,11 +47,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPropertyAccessorBuilder : FirFunctionBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyBuilder.kt index d66933672e3..57ee09a87ea 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirPropertyBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -45,11 +48,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPropertyBuilder : FirVariableBuilder, FirTypeParametersOwnerBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirReceiverParameterBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirReceiverParameterBuilder.kt index f83f38b36d2..8c63a668e49 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirReceiverParameterBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirReceiverParameterBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirReceiverParameterBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirRegularClassBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirRegularClassBuilder.kt index 22e80f57207..e7e6b54fff3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirRegularClassBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirRegularClassBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -39,11 +42,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirRegularClassBuilder : FirClassBuilder, FirTypeParameterRefsOwnerBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirResolvedImportBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirResolvedImportBuilder.kt index 0fdfd729b29..c296b594e2f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirResolvedImportBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirResolvedImportBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.name.ClassId import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedImportBuilder { lateinit var delegate: FirImport diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirScriptBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirScriptBuilder.kt index 4c6366e6680..555b588f627 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirScriptBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirScriptBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -30,11 +33,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirScriptSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirScriptBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirSimpleFunctionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirSimpleFunctionBuilder.kt index b07b4b387a0..42ac5967f07 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirSimpleFunctionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirSimpleFunctionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -43,11 +46,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirSimpleFunctionBuilder : FirFunctionBuilder, FirTypeParametersOwnerBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeAliasBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeAliasBuilder.kt index 64585addc2d..5afdc90368d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeAliasBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeAliasBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -34,11 +37,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirTypeAliasBuilder : FirDeclarationBuilder, FirTypeParametersOwnerBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterBuilder.kt index dd4a5a7cf2f..14a41b4d05c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -30,11 +33,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.types.Variance -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirTypeParameterBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterRefsOwnerBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterRefsOwnerBuilder.kt index cea496c4861..b63308efc87 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterRefsOwnerBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParameterRefsOwnerBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.declarations.FirTypeParameterRef import org.jetbrains.kotlin.fir.declarations.FirTypeParameterRefsOwner import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirTypeParameterRefsOwnerBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParametersOwnerBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParametersOwnerBuilder.kt index a7f76b74849..8ec039a724b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParametersOwnerBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirTypeParametersOwnerBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.declarations.FirTypeParameter import org.jetbrains.kotlin.fir.declarations.FirTypeParametersOwner import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirTypeParametersOwnerBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirValueParameterBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirValueParameterBuilder.kt index 07ffa64378b..f60ed035d46 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirValueParameterBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirValueParameterBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -42,11 +45,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirValueParameterBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirVariableBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirVariableBuilder.kt index ad129fa7a8a..66dbcb9e51c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirVariableBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/builder/FirVariableBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.builder @@ -29,11 +32,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.serialization.deserialization.descriptors.DeserializedContainerSource -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirVariableBuilder : FirDeclarationBuilder { abstract override var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousFunctionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousFunctionImpl.kt index f4f2052baa0..c8e0752dec8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousFunctionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousFunctionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -37,11 +40,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirAnonymousFunctionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousInitializerImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousInitializerImpl.kt index 09db881a48a..1106de8e992 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousInitializerImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousInitializerImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirAnonymousInitializerImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousObjectImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousObjectImpl.kt index 1f660f231d6..257a0239f24 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousObjectImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirAnonymousObjectImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -30,11 +33,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirAnonymousObjectImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirBackingFieldImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirBackingFieldImpl.kt index 2444363046e..6365c8fed94 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirBackingFieldImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirBackingFieldImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -35,11 +38,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) open class FirBackingFieldImpl @FirImplementationDetail constructor( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirCodeFragmentImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirCodeFragmentImpl.kt index 8fdb3b55186..52aabc2a8d8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirCodeFragmentImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirCodeFragmentImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirCodeFragmentImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructedClassTypeParameterRefImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructedClassTypeParameterRefImpl.kt index ead177b3dde..ad288fb1a5c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructedClassTypeParameterRefImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructedClassTypeParameterRefImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.declarations.FirConstructedClassTypeParameterRef import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirConstructedClassTypeParameterRefImpl( override val source: KtSourceElement?, override val symbol: FirTypeParameterSymbol, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructorImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructorImpl.kt index 78a39f8371c..72a4bdab22f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructorImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirConstructorImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -35,11 +38,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirConstructorImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirContextReceiverImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirContextReceiverImpl.kt index 582cb516c24..1c17a51178e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirContextReceiverImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirContextReceiverImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirContextReceiverImpl( override val source: KtSourceElement?, override var typeRef: FirTypeRef, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDanglingModifierListImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDanglingModifierListImpl.kt index 308d7cd6043..69f01b99995 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDanglingModifierListImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDanglingModifierListImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirDanglingModifierListImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDefaultSetterValueParameter.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDefaultSetterValueParameter.kt index 6c8f3cc25b5..a4b90ae6793 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDefaultSetterValueParameter.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirDefaultSetterValueParameter.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -37,11 +40,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirDefaultSetterValueParameter( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirEnumEntryImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirEnumEntryImpl.kt index 103852257a2..a9ea803426f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirEnumEntryImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirEnumEntryImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -34,11 +37,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirEnumEntryImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorFunctionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorFunctionImpl.kt index 17a70d4360b..9caf6651c2f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorFunctionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorFunctionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -36,11 +39,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirErrorFunctionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorImportImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorImportImpl.kt index d2e6a045913..9950cec944f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorImportImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorImportImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirErrorImportImpl( override val aliasSource: KtSourceElement?, override val diagnostic: ConeDiagnostic, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPrimaryConstructorImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPrimaryConstructorImpl.kt index d870f8038a8..2fc4b057027 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPrimaryConstructorImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPrimaryConstructorImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -37,11 +40,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) class FirErrorPrimaryConstructorImpl @FirImplementationDetail constructor( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPropertyImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPropertyImpl.kt index 0edc4703f73..0bb383ad371 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPropertyImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirErrorPropertyImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -37,11 +40,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirErrorPropertyImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFieldImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFieldImpl.kt index 34a3f0d6fa5..68b0682de1d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFieldImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFieldImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -36,11 +39,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) class FirFieldImpl @FirImplementationDetail constructor( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFileImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFileImpl.kt index 3e5d68de63d..ad5f5c1824c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFileImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirFileImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -29,11 +32,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirFileImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirImportImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirImportImpl.kt index f456b8e970a..31f2ceefc93 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirImportImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirImportImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirImportImpl( override val source: KtSourceElement?, override val importedFqName: FqName?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirOuterClassTypeParameterRefImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirOuterClassTypeParameterRefImpl.kt index 4c83bb93373..10092113669 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirOuterClassTypeParameterRefImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirOuterClassTypeParameterRefImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.declarations.FirOuterClassTypeParameterRef import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirOuterClassTypeParameterRefImpl @FirImplementationDetail constructor( override val source: KtSourceElement?, override val symbol: FirTypeParameterSymbol, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPrimaryConstructor.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPrimaryConstructor.kt index 7f76f1c3cd5..cb7e6e2b590 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPrimaryConstructor.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPrimaryConstructor.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -36,11 +39,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) class FirPrimaryConstructor @FirImplementationDetail constructor( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyAccessorImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyAccessorImpl.kt index b702b41b24c..dc42aca33d6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyAccessorImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyAccessorImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -37,11 +40,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) open class FirPropertyAccessorImpl @FirImplementationDetail constructor( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyImpl.kt index 1fb19278fce..2be3bd78490 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirPropertyImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -38,11 +41,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirPropertyImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirReceiverParameterImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirReceiverParameterImpl.kt index a0d634f336e..c9f6ebfdb07 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirReceiverParameterImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirReceiverParameterImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirReceiverParameterImpl( override val source: KtSourceElement?, override var typeRef: FirTypeRef, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirRegularClassImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirRegularClassImpl.kt index 2d4d859a571..53cea5d5371 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirRegularClassImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirRegularClassImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -32,11 +35,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirRegularClassImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirResolvedImportImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirResolvedImportImpl.kt index 4fb7ad7bd4d..9716a098e26 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirResolvedImportImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirResolvedImportImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirResolvedImportImpl( override var delegate: FirImport, override val packageFqName: FqName, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirScriptImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirScriptImpl.kt index fa16cc78423..5dc5ca808ef 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirScriptImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirScriptImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirScriptImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirSimpleFunctionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirSimpleFunctionImpl.kt index 77af5cc4a00..df85853a957 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirSimpleFunctionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirSimpleFunctionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -35,11 +38,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirSimpleFunctionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeAliasImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeAliasImpl.kt index b35f02858f2..376ee6f8519 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeAliasImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeAliasImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -27,11 +30,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirTypeAliasImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeParameterImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeParameterImpl.kt index d3549024351..ba283ea0b56 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeParameterImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirTypeParameterImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirTypeParameterImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirValueParameterImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirValueParameterImpl.kt index fa0d8497d99..b19e9cb5b9d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirValueParameterImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/declarations/impl/FirValueParameterImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.declarations.impl @@ -37,11 +40,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirValueParameterImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/diagnostics/FirDiagnosticHolder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/diagnostics/FirDiagnosticHolder.kt index 1d1ce02fc77..ae8805afc45 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/diagnostics/FirDiagnosticHolder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/diagnostics/FirDiagnosticHolder.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.diagnostics import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirDiagnosticHolder : FirElement { override val source: KtSourceElement? val diagnostic: ConeDiagnostic diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotation.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotation.kt index 3248287f64d..0f0c513bee1 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotation.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotation.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnnotation : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationArgumentMapping.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationArgumentMapping.kt index 7ff1ccd466e..51b064e8298 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationArgumentMapping.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationArgumentMapping.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnnotationArgumentMapping : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val mapping: Map diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationCall.kt index 22044811f58..d1efdd0e46c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnnotationCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnnotationCall : FirAnnotation(), FirCall, FirResolvable { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousFunctionExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousFunctionExpression.kt index f31a15fe67f..92758ac33c2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousFunctionExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousFunctionExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnonymousFunctionExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousObjectExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousObjectExpression.kt index ff15bf86d98..ec76d23e294 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousObjectExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAnonymousObjectExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAnonymousObjectExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArgumentList.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArgumentList.kt index 45465d0a46c..298eea88582 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArgumentList.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArgumentList.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirArgumentList : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val arguments: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArrayLiteral.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArrayLiteral.kt index 17829f160fd..f699dd7ee00 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArrayLiteral.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirArrayLiteral.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirArrayLiteral : FirExpression(), FirCall { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAssignmentOperatorStatement.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAssignmentOperatorStatement.kt index c2a4ad26739..31a5c8eb044 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAssignmentOperatorStatement.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAssignmentOperatorStatement.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAssignmentOperatorStatement : FirPureAbstractElement(), FirStatement { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAugmentedArraySetCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAugmentedArraySetCall.kt index 8b4a556340b..ba198644b70 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAugmentedArraySetCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirAugmentedArraySetCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirAugmentedArraySetCall : FirPureAbstractElement(), FirStatement { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBinaryLogicExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBinaryLogicExpression.kt index 68eadab3c8d..20d3a3b0302 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBinaryLogicExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBinaryLogicExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirBinaryLogicExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBlock.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBlock.kt index eb072f57036..e27970906ab 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBlock.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBlock.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirBlock : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBreakExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBreakExpression.kt index 30d5cc98659..0a6120aa880 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBreakExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirBreakExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirBreakExpression : FirLoopJump() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCall.kt index 79c83e2f89c..2de109f09fa 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCall.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed interface FirCall : FirStatement { override val source: KtSourceElement? override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCallableReferenceAccess.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCallableReferenceAccess.kt index 9217f58c61d..650b61d71ee 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCallableReferenceAccess.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCallableReferenceAccess.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirCallableReferenceAccess : FirQualifiedAccessExpression() { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCatch.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCatch.kt index 390a61cc027..ba090086069 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCatch.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCatch.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.declarations.FirProperty import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirCatch : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val parameter: FirProperty diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckNotNullCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckNotNullCall.kt index 4f5a79b6507..5976ca818e9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckNotNullCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckNotNullCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirCheckNotNullCall : FirExpression(), FirCall, FirResolvable { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckedSafeCallSubject.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckedSafeCallSubject.kt index 109c5437878..319630dca6e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckedSafeCallSubject.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirCheckedSafeCallSubject.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirCheckedSafeCallSubject : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirClassReferenceExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirClassReferenceExpression.kt index b397419bece..1d5d283db05 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirClassReferenceExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirClassReferenceExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirClassReferenceExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComparisonExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComparisonExpression.kt index 3f6a5ec64b3..4a7d89bbc84 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComparisonExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComparisonExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirComparisonExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComponentCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComponentCall.kt index 76f347a073d..eac38ea3999 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComponentCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirComponentCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirComponentCall : FirFunctionCall() { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirConstExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirConstExpression.kt index 92cc64bf521..32d4fcd2ebe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirConstExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirConstExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.types.ConstantValueKind import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirConstExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContextReceiverArgumentListOwner.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContextReceiverArgumentListOwner.kt index abea66f86d9..df8516fd86b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContextReceiverArgumentListOwner.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContextReceiverArgumentListOwner.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirContextReceiverArgumentListOwner : FirElement { override val source: KtSourceElement? val contextReceiverArguments: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContinueExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContinueExpression.kt index e15e0b1d88f..38d784da569 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContinueExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirContinueExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirContinueExpression : FirLoopJump() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDelegatedConstructorCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDelegatedConstructorCall.kt index 387d91ac3eb..e6f3ef265e1 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDelegatedConstructorCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDelegatedConstructorCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDelegatedConstructorCall : FirPureAbstractElement(), FirResolvable, FirCall, FirContextReceiverArgumentListOwner { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDesugaredAssignmentValueReferenceExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDesugaredAssignmentValueReferenceExpression.kt index 95ef407d240..d59bbab1547 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDesugaredAssignmentValueReferenceExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDesugaredAssignmentValueReferenceExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDesugaredAssignmentValueReferenceExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDoWhileLoop.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDoWhileLoop.kt index 9cea23b09c5..dcb623cae68 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDoWhileLoop.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirDoWhileLoop.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirLabel import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDoWhileLoop : FirLoop() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirElvisExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirElvisExpression.kt index ae27bcf144a..33793e1ddad 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirElvisExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirElvisExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirElvisExpression : FirExpression(), FirResolvable { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEnumEntryDeserializedAccessExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEnumEntryDeserializedAccessExpression.kt index e741dfa0cb0..4e4b5442631 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEnumEntryDeserializedAccessExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEnumEntryDeserializedAccessExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirEnumEntryDeserializedAccessExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEqualityOperatorCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEqualityOperatorCall.kt index 51e5bfd206e..11cf20d048c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEqualityOperatorCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirEqualityOperatorCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirEqualityOperatorCall : FirExpression(), FirCall { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorAnnotationCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorAnnotationCall.kt index dbb4d4cdf22..f28c3daad53 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorAnnotationCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorAnnotationCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorAnnotationCall : FirAnnotationCall(), FirDiagnosticHolder { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorExpression.kt index 83db5996834..cefe191cd34 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorExpression : FirExpression(), FirDiagnosticHolder { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorLoop.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorLoop.kt index 8459b5be916..7ff3f33bcbe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorLoop.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorLoop.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.diagnostics.ConeDiagnostic import org.jetbrains.kotlin.fir.diagnostics.FirDiagnosticHolder import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorLoop : FirLoop(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorResolvedQualifier.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorResolvedQualifier.kt index 4cbf317abfa..d7be7784e0a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorResolvedQualifier.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirErrorResolvedQualifier.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorResolvedQualifier : FirResolvedQualifier(), FirDiagnosticHolder { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirExpression.kt index bbc6bb5be24..d82174781c9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirExpression : FirPureAbstractElement(), FirStatement { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirFunctionCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirFunctionCall.kt index 983ae86bc5e..c4081f1f9d8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirFunctionCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirFunctionCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirFunctionCall : FirQualifiedAccessExpression(), FirCall { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirGetClassCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirGetClassCall.kt index 3a7bdbcdfde..b54a8cec6ec 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirGetClassCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirGetClassCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirGetClassCall : FirExpression(), FirCall { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirImplicitInvokeCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirImplicitInvokeCall.kt index 55de3733628..9330a63135d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirImplicitInvokeCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirImplicitInvokeCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirImplicitInvokeCall : FirFunctionCall() { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirInaccessibleReceiverExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirInaccessibleReceiverExpression.kt index 2a1af4ab1ac..fe2bf8be3d1 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirInaccessibleReceiverExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirInaccessibleReceiverExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirInaccessibleReceiverExpression : FirExpression(), FirResolvable { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIncrementDecrementExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIncrementDecrementExpression.kt index 34f1d3df7b7..e0e386bdedf 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIncrementDecrementExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIncrementDecrementExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirIncrementDecrementExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIntegerLiteralOperatorCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIntegerLiteralOperatorCall.kt index e5c464b899b..517f5f1d588 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIntegerLiteralOperatorCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirIntegerLiteralOperatorCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirIntegerLiteralOperatorCall : FirFunctionCall() { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirJump.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirJump.kt index b09033638a3..722db6bd62b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirJump.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirJump.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirJump : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLambdaArgumentExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLambdaArgumentExpression.kt index c29de6e875d..1f082d3314e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLambdaArgumentExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLambdaArgumentExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirLambdaArgumentExpression : FirWrappedArgumentExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyBlock.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyBlock.kt index 8a399f8c4bf..f4f86de8358 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyBlock.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyBlock.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirLazyBlock : FirBlock() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyExpression.kt index ad62611ff38..11790ef33e3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLazyExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirLazyExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoop.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoop.kt index 79abaa1392f..9badac2fffe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoop.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoop.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.FirTargetElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirLoop : FirPureAbstractElement(), FirStatement, FirTargetElement { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoopJump.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoopJump.kt index 6a0a9aacf5a..541a666ee1a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoopJump.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirLoopJump.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirLoopJump : FirJump() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirMultiDelegatedConstructorCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirMultiDelegatedConstructorCall.kt index 02447c38717..dcd21019c96 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirMultiDelegatedConstructorCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirMultiDelegatedConstructorCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirMultiDelegatedConstructorCall : FirDelegatedConstructorCall() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirNamedArgumentExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirNamedArgumentExpression.kt index 098c016f5b3..8e3ded9500d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirNamedArgumentExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirNamedArgumentExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirNamedArgumentExpression : FirWrappedArgumentExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirPropertyAccessExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirPropertyAccessExpression.kt index a2efb98dd6f..2af3dfa0474 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirPropertyAccessExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirPropertyAccessExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirPropertyAccessExpression : FirQualifiedAccessExpression() { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedAccessExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedAccessExpression.kt index 56567260f7a..104ed39a5b6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedAccessExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedAccessExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirQualifiedAccessExpression : FirExpression(), FirResolvable, FirContextReceiverArgumentListOwner { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedErrorAccessExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedErrorAccessExpression.kt index 2739f836f74..628e5ae0064 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedErrorAccessExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirQualifiedErrorAccessExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirQualifiedErrorAccessExpression : FirExpression(), FirDiagnosticHolder { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvable.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvable.kt index 82a3f9c80cb..37ae9966e6e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvable.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvable.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed interface FirResolvable : FirElement { override val source: KtSourceElement? val calleeReference: FirReference diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedQualifier.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedQualifier.kt index 9730aa9ae92..fae9cbaa6c8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedQualifier.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedQualifier.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedQualifier : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedReifiedParameterReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedReifiedParameterReference.kt index 79a00d743dc..5c5ad94c5f5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedReifiedParameterReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirResolvedReifiedParameterReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedReifiedParameterReference : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirReturnExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirReturnExpression.kt index 5315c934854..d55aef0fa6d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirReturnExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirReturnExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirReturnExpression : FirJump() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSafeCallExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSafeCallExpression.kt index bf139688bdc..f02ee222189 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSafeCallExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSafeCallExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirSafeCallExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSmartCastExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSmartCastExpression.kt index 22856eaf743..2eea0b572df 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSmartCastExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSmartCastExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.types.SmartcastStability import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirSmartCastExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSpreadArgumentExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSpreadArgumentExpression.kt index c9c6285a29c..e60994253c7 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSpreadArgumentExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirSpreadArgumentExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirSpreadArgumentExpression : FirWrappedArgumentExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStatement.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStatement.kt index c50037ddf6e..e06079112d2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStatement.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStatement.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirAnnotationContainer import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - interface FirStatement : FirAnnotationContainer { override val source: KtSourceElement? override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStringConcatenationCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStringConcatenationCall.kt index 9a248602882..87c52d57952 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStringConcatenationCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirStringConcatenationCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirStringConcatenationCall : FirCall, FirExpression() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThisReceiverExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThisReceiverExpression.kt index 7e7a4bf51ab..6bd69c6714c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThisReceiverExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThisReceiverExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirThisReceiverExpression : FirQualifiedAccessExpression() { @UnresolvedExpressionTypeAccess abstract override val coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThrowExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThrowExpression.kt index b046adf0bb8..be97ae5392b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThrowExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirThrowExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirThrowExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTryExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTryExpression.kt index 5a03c6fdcd5..86f500f50c7 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTryExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTryExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTryExpression : FirExpression(), FirResolvable { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTypeOperatorCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTypeOperatorCall.kt index 70c2089a6bb..66169e0112b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTypeOperatorCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirTypeOperatorCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTypeOperatorCall : FirExpression(), FirCall { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVarargArgumentsExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVarargArgumentsExpression.kt index 596dd5ad06f..9b39e5856b4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVarargArgumentsExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVarargArgumentsExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirVarargArgumentsExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVariableAssignment.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVariableAssignment.kt index d7d3313e8a5..d1cce9368a0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVariableAssignment.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirVariableAssignment.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirVariableAssignment : FirPureAbstractElement(), FirStatement { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenBranch.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenBranch.kt index bd1cfd7ec47..f21f7edc67c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenBranch.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenBranch.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWhenBranch : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? abstract val condition: FirExpression diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenExpression.kt index 4e8b6bef282..27e97023efa 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWhenExpression : FirExpression(), FirResolvable { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenSubjectExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenSubjectExpression.kt index bccc18694aa..4f84a2caebe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenSubjectExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhenSubjectExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWhenSubjectExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhileLoop.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhileLoop.kt index d64f2528985..56cbd7b4cdb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhileLoop.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWhileLoop.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirLabel import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWhileLoop : FirLoop() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedArgumentExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedArgumentExpression.kt index cd43c8eb1f2..427cbc1f567 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedArgumentExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedArgumentExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWrappedArgumentExpression : FirWrappedExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedDelegateExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedDelegateExpression.kt index 638debb0a2a..1fdcac26bff 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedDelegateExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedDelegateExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWrappedDelegateExpression : FirWrappedExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedExpression.kt index a90e79be44f..03a0acf8c6e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/FirWrappedExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.expressions import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirWrappedExpression : FirExpression() { abstract override val source: KtSourceElement? @UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractFunctionCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractFunctionCallBuilder.kt index 673934f1b8c..d0b6f3b4cb9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractFunctionCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractFunctionCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirAbstractFunctionCallBuilder : FirQualifiedAccessExpressionBuilder, FirCallBuilder { abstract override var coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractResolvedQualifierBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractResolvedQualifierBuilder.kt index e6c27819911..e416866c90c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractResolvedQualifierBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAbstractResolvedQualifierBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.ClassId import org.jetbrains.kotlin.name.FqName -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirAbstractResolvedQualifierBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationBuilder.kt index 6ee8b1b45a3..1dc9f4c82fb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.types.coneTypeOrNull import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAnnotationBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationCallBuilder.kt index 6c3a1e1df42..5a0be2d25bc 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAnnotationCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -32,11 +35,6 @@ import org.jetbrains.kotlin.fir.types.coneTypeOrNull import org.jetbrains.kotlin.fir.types.impl.FirImplicitTypeRefImplWithoutSource import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAnnotationCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirArrayLiteralBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirArrayLiteralBuilder.kt index 409e3624b70..120c1329dcf 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirArrayLiteralBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirArrayLiteralBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirArrayLiteralImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirArrayLiteralBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAssignmentOperatorStatementBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAssignmentOperatorStatementBuilder.kt index e5d3f4fa671..be12d7c8292 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAssignmentOperatorStatementBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAssignmentOperatorStatementBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.fir.expressions.FirOperation import org.jetbrains.kotlin.fir.expressions.impl.FirAssignmentOperatorStatementImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAssignmentOperatorStatementBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAugmentedArraySetCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAugmentedArraySetCallBuilder.kt index 90ccb492d39..dc1bf0777cb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAugmentedArraySetCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirAugmentedArraySetCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.references.impl.FirStubReference import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirAugmentedArraySetCallBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBinaryLogicExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBinaryLogicExpressionBuilder.kt index 72c59eed4a6..3776beddf2f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBinaryLogicExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBinaryLogicExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirBinaryLogicExpressionImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirBinaryLogicExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBlockBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBlockBuilder.kt index 853d71348db..71db8c33c57 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBlockBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBlockBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirBlockImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirBlockBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBreakExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBreakExpressionBuilder.kt index c5ac70275b6..7a03df6db60 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBreakExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirBreakExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitNothingTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirBreakExpressionBuilder : FirLoopJumpBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallBuilder.kt index 5108867af21..a929c3f6a50 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.expressions.FirArgumentList import org.jetbrains.kotlin.fir.expressions.FirCall import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirCallBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallableReferenceAccessBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallableReferenceAccessBuilder.kt index 8b1d72bc9ea..81f61bfc23f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallableReferenceAccessBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCallableReferenceAccessBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -27,11 +30,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirCallableReferenceAccessBuilder : FirQualifiedAccessExpressionBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCatchBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCatchBuilder.kt index e1d02c68413..8b47c506ca6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCatchBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCatchBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.expressions.FirCatch import org.jetbrains.kotlin.fir.expressions.impl.FirCatchImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirCatchBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckNotNullCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckNotNullCallBuilder.kt index 5f5d205a448..f23a8df3a52 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckNotNullCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckNotNullCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirStubReference import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirCheckNotNullCallBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckedSafeCallSubjectBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckedSafeCallSubjectBuilder.kt index bfd5251b22a..b0e0bba5304 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckedSafeCallSubjectBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirCheckedSafeCallSubjectBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirCheckedSafeCallSubjectImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirCheckedSafeCallSubjectBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirClassReferenceExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirClassReferenceExpressionBuilder.kt index 9b22617def3..87550b00765 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirClassReferenceExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirClassReferenceExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirClassReferenceExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComparisonExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComparisonExpressionBuilder.kt index a4dc13925b3..e17bbecd41a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComparisonExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComparisonExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.types.constructClassLikeType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirComparisonExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComponentCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComponentCallBuilder.kt index 547ffa55e7c..434bc354058 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComponentCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirComponentCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -32,11 +35,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirComponentCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirContinueExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirContinueExpressionBuilder.kt index 6c341c0ca47..a1cffbd07f4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirContinueExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirContinueExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitNothingTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirContinueExpressionBuilder : FirLoopJumpBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDelegatedConstructorCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDelegatedConstructorCallBuilder.kt index 1351c4a16bc..75e0f6aae6d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDelegatedConstructorCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDelegatedConstructorCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirExplicitThisReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDelegatedConstructorCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDesugaredAssignmentValueReferenceExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDesugaredAssignmentValueReferenceExpressionBuilder.kt index b72457f1d50..1404c85a755 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDesugaredAssignmentValueReferenceExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDesugaredAssignmentValueReferenceExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirDesugaredAssignmentValueRefe import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDesugaredAssignmentValueReferenceExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDoWhileLoopBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDoWhileLoopBuilder.kt index 22bf60d5c3b..f84e32c9987 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDoWhileLoopBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirDoWhileLoopBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.builder.FirLoopBuilder import org.jetbrains.kotlin.fir.expressions.impl.FirDoWhileLoopImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDoWhileLoopBuilder : FirLoopBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElseIfTrueConditionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElseIfTrueConditionBuilder.kt index fde0cca4e62..744dc17734b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElseIfTrueConditionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElseIfTrueConditionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitBooleanTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirElseIfTrueConditionBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElvisExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElvisExpressionBuilder.kt index 0c19e4b79c1..a331c445bd6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElvisExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirElvisExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirStubReference import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirElvisExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEmptyExpressionBlockBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEmptyExpressionBlockBuilder.kt index ad87a702ac3..2f60a579c65 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEmptyExpressionBlockBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEmptyExpressionBlockBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirEmptyExpressionBlock import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(FirImplementationDetail::class) fun buildEmptyExpressionBlock(): FirBlock { return FirEmptyExpressionBlock() diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEnumEntryDeserializedAccessExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEnumEntryDeserializedAccessExpressionBuilder.kt index ffec1d5fa7f..2b9a75b615a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEnumEntryDeserializedAccessExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEnumEntryDeserializedAccessExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.ClassId import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirEnumEntryDeserializedAccessExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override val annotations: MutableList = mutableListOf() diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEqualityOperatorCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEqualityOperatorCallBuilder.kt index 48e6970f568..0199f327c42 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEqualityOperatorCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirEqualityOperatorCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.types.constructClassLikeType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirEqualityOperatorCallBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorAnnotationCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorAnnotationCallBuilder.kt index 263f43b665d..4e791e0bea0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorAnnotationCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorAnnotationCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -33,11 +36,6 @@ import org.jetbrains.kotlin.fir.types.coneTypeOrNull import org.jetbrains.kotlin.fir.types.impl.FirImplicitTypeRefImplWithoutSource import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorAnnotationCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorExpressionBuilder.kt index 7dabed31eb0..896bc819ce5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.types.ConeErrorType import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorLoopBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorLoopBuilder.kt index b973776c88f..ce7ce56de03 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorLoopBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorLoopBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirEmptyExpressionBlock import org.jetbrains.kotlin.fir.expressions.impl.FirErrorLoopImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorLoopBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorResolvedQualifierBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorResolvedQualifierBuilder.kt index bf324981b8e..349a599b5fd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorResolvedQualifierBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirErrorResolvedQualifierBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.ClassId import org.jetbrains.kotlin.name.FqName -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorResolvedQualifierBuilder : FirAbstractResolvedQualifierBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionBuilder.kt index 169dfdee373..101c57296bd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.expressions.FirExpression import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirExpressionBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionStubBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionStubBuilder.kt index a883a6b12ca..f5d43201478 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionStubBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirExpressionStubBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirExpressionStub import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirExpressionStubBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirFunctionCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirFunctionCallBuilder.kt index ea10837ef41..e628f6c8f58 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirFunctionCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirFunctionCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -30,11 +33,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirFunctionCallBuilder : FirAbstractFunctionCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirGetClassCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirGetClassCallBuilder.kt index 0c26f7dbc60..7eced381c16 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirGetClassCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirGetClassCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirGetClassCallImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirGetClassCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirImplicitInvokeCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirImplicitInvokeCallBuilder.kt index 587f0cdacbe..d6ef45236d2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirImplicitInvokeCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirImplicitInvokeCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -30,11 +33,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirImplicitInvokeCallBuilder : FirAbstractFunctionCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirInaccessibleReceiverExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirInaccessibleReceiverExpressionBuilder.kt index d9e83077e68..68f1db76aa5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirInaccessibleReceiverExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirInaccessibleReceiverExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.references.FirThisReference import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirInaccessibleReceiverExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIncrementDecrementExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIncrementDecrementExpressionBuilder.kt index 4a07e460ad9..ec3e8a4ddbc 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIncrementDecrementExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIncrementDecrementExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirIncrementDecrementExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIntegerLiteralOperatorCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIntegerLiteralOperatorCallBuilder.kt index f409845c99a..b2cbb0caf03 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIntegerLiteralOperatorCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirIntegerLiteralOperatorCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -30,11 +33,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl open class FirIntegerLiteralOperatorCallBuilder : FirAbstractFunctionCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLambdaArgumentExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLambdaArgumentExpressionBuilder.kt index de07ef07a59..960fd6c7f1c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLambdaArgumentExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLambdaArgumentExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirLambdaArgumentExpressionImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirLambdaArgumentExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyBlockBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyBlockBuilder.kt index 2f75828e571..caaaef9310e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyBlockBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyBlockBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirLazyBlockImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - fun buildLazyBlock(): FirLazyBlock { return FirLazyBlockImpl() } diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyDelegatedConstructorCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyDelegatedConstructorCallBuilder.kt index b27459e8962..d65a5e5fabf 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyDelegatedConstructorCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyDelegatedConstructorCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirLazyDelegatedConstructorCallBuilder : FirAnnotationContainerBuilder { lateinit var constructedTypeRef: FirTypeRef diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyExpressionBuilder.kt index cb31d47cbaf..3b8d43c8abe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLazyExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirLazyExpressionImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirLazyExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopBuilder.kt index 1c1d912cbb6..2d14a04000a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.expressions.FirExpression import org.jetbrains.kotlin.fir.expressions.FirLoop import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirLoopBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopJumpBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopJumpBuilder.kt index b9a900ed9b4..b9cf91fea7e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopJumpBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirLoopJumpBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.expressions.FirLoopJump import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirLoopJumpBuilder { abstract var source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirMultiDelegatedConstructorCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirMultiDelegatedConstructorCallBuilder.kt index 146aa71b117..cc69de66c10 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirMultiDelegatedConstructorCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirMultiDelegatedConstructorCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirMultiDelegatedConstructorCallBuilder : FirAnnotationContainerBuilder { val delegatedConstructorCalls: MutableList = mutableListOf() diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirNamedArgumentExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirNamedArgumentExpressionBuilder.kt index 7eadba64b25..b905a6b5710 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirNamedArgumentExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirNamedArgumentExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirNamedArgumentExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirPropertyAccessExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirPropertyAccessExpressionBuilder.kt index 16c2aef7628..d48f34d35e9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirPropertyAccessExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirPropertyAccessExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPropertyAccessExpressionBuilder : FirQualifiedAccessExpressionBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedAccessExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedAccessExpressionBuilder.kt index 7ca0e1b11c9..60a575f784b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedAccessExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedAccessExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl interface FirQualifiedAccessExpressionBuilder { abstract var coneTypeOrNull: ConeKotlinType? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedErrorAccessExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedErrorAccessExpressionBuilder.kt index 2eaf6ecb377..3f98afc75a0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedErrorAccessExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirQualifiedErrorAccessExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.types.ConeErrorType import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirQualifiedErrorAccessExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedQualifierBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedQualifierBuilder.kt index 3172d9aba45..041e7c5d062 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedQualifierBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedQualifierBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -27,11 +30,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.ClassId import org.jetbrains.kotlin.name.FqName -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedQualifierBuilder : FirAbstractResolvedQualifierBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedReifiedParameterReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedReifiedParameterReferenceBuilder.kt index cf59a6eab4e..238eaba0498 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedReifiedParameterReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirResolvedReifiedParameterReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedReifiedParameterReferenceBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirReturnExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirReturnExpressionBuilder.kt index 60ebe8ffffb..a0b43fe4b10 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirReturnExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirReturnExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitNothingTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirReturnExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSafeCallExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSafeCallExpressionBuilder.kt index 7f4898b0322..7c3735fd5c0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSafeCallExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSafeCallExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirSafeCallExpressionImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirSafeCallExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSmartCastExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSmartCastExpressionBuilder.kt index c0ab8a39e6d..b7bb8f4d613 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSmartCastExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSmartCastExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.types.SmartcastStability -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirSmartCastExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSpreadArgumentExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSpreadArgumentExpressionBuilder.kt index fae3645f222..f0958822326 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSpreadArgumentExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirSpreadArgumentExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirSpreadArgumentExpressionImpl import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirSpreadArgumentExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirStringConcatenationCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirStringConcatenationCallBuilder.kt index 934b34c833d..e458e034f4f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirStringConcatenationCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirStringConcatenationCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitStringTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirStringConcatenationCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThisReceiverExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThisReceiverExpressionBuilder.kt index 2cc903a857a..3901364a7d3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThisReceiverExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThisReceiverExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -27,11 +30,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirThisReceiverExpressionBuilder : FirQualifiedAccessExpressionBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var coneTypeOrNull: ConeKotlinType? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThrowExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThrowExpressionBuilder.kt index b905d2a1e02..5538fb26ee6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThrowExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirThrowExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitNothingTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirThrowExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTryExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTryExpressionBuilder.kt index ea34d825c55..08d15fd594a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTryExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTryExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirStubReference import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirTryExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTypeOperatorCallBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTypeOperatorCallBuilder.kt index 7eae1abefe3..fcbf94ddaa3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTypeOperatorCallBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirTypeOperatorCallBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirTypeOperatorCallBuilder : FirCallBuilder, FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirUnitExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirUnitExpressionBuilder.kt index 335aa9708c3..330f804da15 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirUnitExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirUnitExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -23,11 +26,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirImplicitUnitTypeRef import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirUnitExpressionBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVarargArgumentsExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVarargArgumentsExpressionBuilder.kt index 6dbc1ca95d7..72c290de0fc 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVarargArgumentsExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVarargArgumentsExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirVarargArgumentsExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVariableAssignmentBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVariableAssignmentBuilder.kt index 1ae2df25fda..c439190b9cb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVariableAssignmentBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirVariableAssignmentBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.expressions.FirVariableAssignment import org.jetbrains.kotlin.fir.expressions.impl.FirVariableAssignmentImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirVariableAssignmentBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenBranchBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenBranchBuilder.kt index 72695322bf9..60f0e1c4fda 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenBranchBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenBranchBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.expressions.FirWhenBranch import org.jetbrains.kotlin.fir.expressions.impl.FirWhenBranchImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirWhenBranchBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenExpressionBuilder.kt index dc08d4bc0e1..595c6690fdc 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirStubReference import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirWhenExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenSubjectExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenSubjectExpressionBuilder.kt index 921d58d40a6..6c1b7b0bd27 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenSubjectExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhenSubjectExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.types.constructClassLikeType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.StandardClassIds -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirWhenSubjectExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhileLoopBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhileLoopBuilder.kt index 0012348cdec..1ef868bfe4d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhileLoopBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWhileLoopBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.builder.FirLoopBuilder import org.jetbrains.kotlin.fir.expressions.impl.FirWhileLoopImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirWhileLoopBuilder : FirLoopBuilder, FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWrappedDelegateExpressionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWrappedDelegateExpressionBuilder.kt index 880b9faf06a..f152a15c3f3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWrappedDelegateExpressionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/builder/FirWrappedDelegateExpressionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.builder @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.expressions.impl.FirWrappedDelegateExpressionImp import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirWrappedDelegateExpressionBuilder : FirAnnotationContainerBuilder, FirExpressionBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationCallImpl.kt index 86ee52c694d..dc72f64b251 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirAnnotationCallImpl( override val source: KtSourceElement?, override var useSiteTarget: AnnotationUseSiteTarget?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationImpl.kt index 692c7169620..c46bfe1a8cd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAnnotationImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirAnnotationImpl( override val source: KtSourceElement?, override var useSiteTarget: AnnotationUseSiteTarget?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirArrayLiteralImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirArrayLiteralImpl.kt index 5ae094ef594..9f8b2e4962c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirArrayLiteralImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirArrayLiteralImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirArrayLiteralImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAssignmentOperatorStatementImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAssignmentOperatorStatementImpl.kt index d7698530f29..af4549c1d94 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAssignmentOperatorStatementImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAssignmentOperatorStatementImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirAssignmentOperatorStatementImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAugmentedArraySetCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAugmentedArraySetCallImpl.kt index 6e030c21b01..bad87a17c8c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAugmentedArraySetCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirAugmentedArraySetCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirAugmentedArraySetCallImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBinaryLogicExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBinaryLogicExpressionImpl.kt index e93ece9e132..e3cff2df0c4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBinaryLogicExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBinaryLogicExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirBinaryLogicExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBlockImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBlockImpl.kt index d37847137e0..9d0699fc72f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBlockImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBlockImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirBlockImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBreakExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBreakExpressionImpl.kt index 2fc882bc0e2..f61df5758d3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBreakExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirBreakExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirBreakExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCallableReferenceAccessImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCallableReferenceAccessImpl.kt index 8266ae4d655..7088d09c79d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCallableReferenceAccessImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCallableReferenceAccessImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirCallableReferenceAccessImpl( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCatchImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCatchImpl.kt index e873025ab96..8a44fb6c4a2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCatchImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCatchImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.expressions.FirBlock import org.jetbrains.kotlin.fir.expressions.FirCatch import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirCatchImpl( override val source: KtSourceElement?, override var parameter: FirProperty, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckNotNullCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckNotNullCallImpl.kt index 53dde3aecdc..1f40bab73c0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckNotNullCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckNotNullCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirCheckNotNullCallImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckedSafeCallSubjectImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckedSafeCallSubjectImpl.kt index 83d8923d8c1..d4d1d372a49 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckedSafeCallSubjectImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirCheckedSafeCallSubjectImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirCheckedSafeCallSubjectImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirClassReferenceExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirClassReferenceExpressionImpl.kt index c9bfd0fb297..06a54ebe962 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirClassReferenceExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirClassReferenceExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirClassReferenceExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComparisonExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComparisonExpressionImpl.kt index e1c5cc0b40a..e6740caa1f3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComparisonExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComparisonExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirComparisonExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComponentCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComponentCallImpl.kt index ddd3570c862..b0e0b26174e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComponentCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirComponentCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -26,11 +29,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(FirImplementationDetail::class, UnresolvedExpressionTypeAccess::class) internal class FirComponentCallImpl( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirConstExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirConstExpressionImpl.kt index 18b62a2db99..edd01d272c4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirConstExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirConstExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirConstExpressionImpl ( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirContinueExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirContinueExpressionImpl.kt index b72a3bf12ee..d983d356491 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirContinueExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirContinueExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirContinueExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDelegatedConstructorCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDelegatedConstructorCallImpl.kt index db57f9ea31c..2d5c448118f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDelegatedConstructorCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDelegatedConstructorCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirDelegatedConstructorCallImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDesugaredAssignmentValueReferenceExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDesugaredAssignmentValueReferenceExpressionImpl.kt index c4df7cb8a6e..97a80fc4a7c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDesugaredAssignmentValueReferenceExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDesugaredAssignmentValueReferenceExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirDesugaredAssignmentValueReferenceExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDoWhileLoopImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDoWhileLoopImpl.kt index bd3fd3274ff..be2b2f5d11e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDoWhileLoopImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirDoWhileLoopImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirDoWhileLoopImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElseIfTrueCondition.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElseIfTrueCondition.kt index 6ed72716303..355ea256de6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElseIfTrueCondition.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElseIfTrueCondition.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirElseIfTrueCondition @FirImplementationDetail constructor( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElvisExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElvisExpressionImpl.kt index be67f93b354..7b16b5d84c8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElvisExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirElvisExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirElvisExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEmptyExpressionBlock.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEmptyExpressionBlock.kt index a05e9ef79db..d4f6202972c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEmptyExpressionBlock.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEmptyExpressionBlock.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirEmptyExpressionBlock : FirBlock() { override val source: KtSourceElement? get() = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEnumEntryDeserializedAccessExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEnumEntryDeserializedAccessExpressionImpl.kt index 26a0dcece33..c211b608fdd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEnumEntryDeserializedAccessExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEnumEntryDeserializedAccessExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirEnumEntryDeserializedAccessExpressionImpl( override var annotations: MutableOrEmptyList, override val enumClassId: ClassId, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEqualityOperatorCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEqualityOperatorCallImpl.kt index 9c6eb704e59..5bf8c7b3635 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEqualityOperatorCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirEqualityOperatorCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirEqualityOperatorCallImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorAnnotationCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorAnnotationCallImpl.kt index d70074e8e2d..c20e3aa569a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorAnnotationCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorAnnotationCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -25,11 +28,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirErrorAnnotationCallImpl( override val source: KtSourceElement?, override var useSiteTarget: AnnotationUseSiteTarget?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorExpressionImpl.kt index 9f84d7b2b5f..2ac9d65434a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirErrorExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorLoopImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorLoopImpl.kt index 797831474ad..5ff994b5b74 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorLoopImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorLoopImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirErrorLoopImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorResolvedQualifierImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorResolvedQualifierImpl.kt index b398461b2da..ff91be5b3ab 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorResolvedQualifierImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirErrorResolvedQualifierImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirErrorResolvedQualifierImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirExpressionStub.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirExpressionStub.kt index 318dde8de05..4a4d3df8a07 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirExpressionStub.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirExpressionStub.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) class FirExpressionStub @FirImplementationDetail constructor( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirFunctionCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirFunctionCallImpl.kt index 6f2308187db..df762b6ffec 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirFunctionCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirFunctionCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) open class FirFunctionCallImpl @FirImplementationDetail constructor( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirGetClassCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirGetClassCallImpl.kt index bb554e2d85a..0dc94aee580 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirGetClassCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirGetClassCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirGetClassCallImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirImplicitInvokeCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirImplicitInvokeCallImpl.kt index bd1103aa78d..0b4a8859dc7 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirImplicitInvokeCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirImplicitInvokeCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirImplicitInvokeCallImpl( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirInaccessibleReceiverExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirInaccessibleReceiverExpressionImpl.kt index 8140b8f17ba..bb6c31e8a16 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirInaccessibleReceiverExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirInaccessibleReceiverExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirInaccessibleReceiverExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIncrementDecrementExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIncrementDecrementExpressionImpl.kt index bb591d594eb..58178c64c4c 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIncrementDecrementExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIncrementDecrementExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirIncrementDecrementExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIntegerLiteralOperatorCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIntegerLiteralOperatorCallImpl.kt index 7136c77979c..15e0ae4b3c5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIntegerLiteralOperatorCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirIntegerLiteralOperatorCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -24,11 +27,6 @@ import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirIntegerLiteralOperatorCallImpl( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLambdaArgumentExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLambdaArgumentExpressionImpl.kt index 91666edc07c..938a9f3e464 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLambdaArgumentExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLambdaArgumentExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirLambdaArgumentExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyBlockImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyBlockImpl.kt index 8cdf6b766f5..02ed0196fbe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyBlockImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyBlockImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirLazyBlockImpl : FirLazyBlock() { override val source: KtSourceElement? get() = error("FirLazyBlock should be calculated before accessing") diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyDelegatedConstructorCall.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyDelegatedConstructorCall.kt index 87551b830cc..94c3828a4c2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyDelegatedConstructorCall.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyDelegatedConstructorCall.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirLazyDelegatedConstructorCall @FirImplementationDetail constructor( override var constructedTypeRef: FirTypeRef, override var calleeReference: FirReference, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyExpressionImpl.kt index b975e933ec4..aaf0bc92e66 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirLazyExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirLazyExpressionImpl( override val source: KtSourceElement?, ) : FirLazyExpression() { diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirMultiDelegatedConstructorCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirMultiDelegatedConstructorCallImpl.kt index 50b9c24421a..5cc50f66cc0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirMultiDelegatedConstructorCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirMultiDelegatedConstructorCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirMultiDelegatedConstructorCallImpl @FirImplementationDetail constructor( override val delegatedConstructorCalls: MutableList, ) : FirMultiDelegatedConstructorCall() { diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirNamedArgumentExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirNamedArgumentExpressionImpl.kt index 5a2c3d2abe5..3f606257899 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirNamedArgumentExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirNamedArgumentExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirNamedArgumentExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirPropertyAccessExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirPropertyAccessExpressionImpl.kt index e582a0c6bae..5462205c68a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirPropertyAccessExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirPropertyAccessExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) class FirPropertyAccessExpressionImpl @FirImplementationDetail constructor( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirQualifiedErrorAccessExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirQualifiedErrorAccessExpressionImpl.kt index bf5d9514b96..ab80ac31388 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirQualifiedErrorAccessExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirQualifiedErrorAccessExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirQualifiedErrorAccessExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedQualifierImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedQualifierImpl.kt index adf78941b7a..a09e8db6d14 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedQualifierImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedQualifierImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirResolvedQualifierImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedReifiedParameterReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedReifiedParameterReferenceImpl.kt index 24d4bcf3de9..6e0e80546bd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedReifiedParameterReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirResolvedReifiedParameterReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirResolvedReifiedParameterReferenceImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirReturnExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirReturnExpressionImpl.kt index 96f0418cc6d..e420e9a7acb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirReturnExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirReturnExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirReturnExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSafeCallExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSafeCallExpressionImpl.kt index 95436af7901..09b42c83ea4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSafeCallExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSafeCallExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirSafeCallExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSmartCastExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSmartCastExpressionImpl.kt index 7a112d22b25..b42b35d04fd 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSmartCastExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSmartCastExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirSmartCastExpressionImpl( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSpreadArgumentExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSpreadArgumentExpressionImpl.kt index 7ab28c21975..2abfb1f395a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSpreadArgumentExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirSpreadArgumentExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirSpreadArgumentExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirStringConcatenationCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirStringConcatenationCallImpl.kt index 4e679de5643..4dbd8c05d44 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirStringConcatenationCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirStringConcatenationCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirStringConcatenationCallImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThisReceiverExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThisReceiverExpressionImpl.kt index 6c4462aa702..a52cd3be571 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThisReceiverExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThisReceiverExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -22,11 +25,6 @@ import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess import org.jetbrains.kotlin.fir.FirImplementationDetail -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirThisReceiverExpressionImpl( @property:UnresolvedExpressionTypeAccess diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThrowExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThrowExpressionImpl.kt index f5972f0fa42..59b2636e9a6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThrowExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirThrowExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirThrowExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTryExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTryExpressionImpl.kt index f2f0fad6c46..1f6c41c898e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTryExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTryExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirTryExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTypeOperatorCallImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTypeOperatorCallImpl.kt index 979397267e8..51cd23c707a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTypeOperatorCallImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirTypeOperatorCallImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirTypeOperatorCallImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirUnitExpression.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirUnitExpression.kt index 47321233407..b4793782573 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirUnitExpression.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirUnitExpression.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirUnitExpression @FirImplementationDetail constructor( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVarargArgumentsExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVarargArgumentsExpressionImpl.kt index bfbf75fcbeb..094c3e71975 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVarargArgumentsExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVarargArgumentsExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirVarargArgumentsExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVariableAssignmentImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVariableAssignmentImpl.kt index 3ff1b773aea..f64a2ba794e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVariableAssignmentImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirVariableAssignmentImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirVariableAssignmentImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenBranchImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenBranchImpl.kt index c3a8195d46b..f887d49d1c0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenBranchImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenBranchImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.expressions.FirExpression import org.jetbrains.kotlin.fir.expressions.FirWhenBranch import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirWhenBranchImpl( override val source: KtSourceElement?, override var condition: FirExpression, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenExpressionImpl.kt index 27cfc7f63a3..90d56b078d0 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -21,11 +24,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(UnresolvedExpressionTypeAccess::class) internal class FirWhenExpressionImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenSubjectExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenSubjectExpressionImpl.kt index 1809f570daa..b83db762d29 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenSubjectExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhenSubjectExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirWhenSubjectExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhileLoopImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhileLoopImpl.kt index 124bff5f4f4..52d7fdb0e67 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhileLoopImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWhileLoopImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirWhileLoopImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWrappedDelegateExpressionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWrappedDelegateExpressionImpl.kt index 6df085bfaef..cbdf4f5d66b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWrappedDelegateExpressionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/expressions/impl/FirWrappedDelegateExpressionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.expressions.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.expressions.UnresolvedExpressionTypeAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirWrappedDelegateExpressionImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFileAnnotationsContainerImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFileAnnotationsContainerImpl.kt index 798910e6a79..57835c098a5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFileAnnotationsContainerImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFileAnnotationsContainerImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.impl @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty import org.jetbrains.kotlin.fir.declarations.ResolveStateAccess -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @OptIn(ResolveStateAccess::class) internal class FirFileAnnotationsContainerImpl( override val source: KtSourceElement?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFunctionTypeParameterImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFunctionTypeParameterImpl.kt index ac59e426eb5..aabfa9b709a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFunctionTypeParameterImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirFunctionTypeParameterImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirFunctionTypeParameterImpl( override val source: KtSourceElement?, override val name: Name?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirLabelImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirLabelImpl.kt index 8008e2023ed..05d450d0d40 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirLabelImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirLabelImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.impl @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirLabel import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirLabelImpl( override val source: KtSourceElement?, override val name: String, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirPackageDirectiveImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirPackageDirectiveImpl.kt index 29fb1e1ccf2..57a08209831 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirPackageDirectiveImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/impl/FirPackageDirectiveImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.FirPackageDirective import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirPackageDirectiveImpl( override val source: KtSourceElement?, override val packageFqName: FqName, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirBackingFieldReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirBackingFieldReference.kt index 2d3e0028b81..cb71ef6243e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirBackingFieldReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirBackingFieldReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirBackingFieldReference : FirResolvedNamedReference() { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirControlFlowGraphReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirControlFlowGraphReference.kt index 44022d01230..2523ae1e831 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirControlFlowGraphReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirControlFlowGraphReference.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirControlFlowGraphReference : FirReference() { abstract override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirDelegateFieldReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirDelegateFieldReference.kt index 1d06b29e27f..9d1c12653b6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirDelegateFieldReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirDelegateFieldReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirDelegateFieldSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDelegateFieldReference : FirResolvedNamedReference() { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirErrorNamedReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirErrorNamedReference.kt index ffdadbbb313..4ea846f5dfe 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirErrorNamedReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirErrorNamedReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.diagnostics.FirDiagnosticHolder import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorNamedReference : FirNamedReference(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirFromMissingDependenciesNamedReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirFromMissingDependenciesNamedReference.kt index c383691912c..8937c8cadfb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirFromMissingDependenciesNamedReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirFromMissingDependenciesNamedReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirFromMissingDependenciesNamedReference : FirNamedReference() { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReference.kt index fbd6a104660..ec8959970f9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirNamedReference : FirReference() { abstract override val source: KtSourceElement? abstract val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReferenceWithCandidateBase.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReferenceWithCandidateBase.kt index be6e69c5277..f5893f91fa9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReferenceWithCandidateBase.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirNamedReferenceWithCandidateBase.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirNamedReferenceWithCandidateBase : FirNamedReference() { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirReference.kt index 2e6528bce86..c07c5506002 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirReference : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedCallableReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedCallableReference.kt index 3646c9cd46b..66ff9d4d4dc 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedCallableReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedCallableReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedCallableReference : FirResolvedNamedReference() { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedErrorReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedErrorReference.kt index d9340ae5ccc..83d850c8e9a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedErrorReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedErrorReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedErrorReference : FirResolvedNamedReference(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedNamedReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedNamedReference.kt index cdc906ed961..5fca7bddbe3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedNamedReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirResolvedNamedReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedNamedReference : FirNamedReference() { abstract override val source: KtSourceElement? abstract override val name: Name diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirSuperReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirSuperReference.kt index e362bac7693..9825f2d1d65 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirSuperReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirSuperReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirSuperReference : FirReference() { abstract override val source: KtSourceElement? abstract val labelName: String? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirThisReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirThisReference.kt index cbe11110d64..5d028ce6a68 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirThisReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/FirThisReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.references import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.diagnostics.ConeDiagnostic import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirThisReference : FirReference() { abstract override val source: KtSourceElement? abstract val labelName: String? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirBackingFieldReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirBackingFieldReferenceBuilder.kt index 39741066c64..7cc8f1a52b8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirBackingFieldReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirBackingFieldReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirBackingFieldReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirDelegateFieldReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirDelegateFieldReferenceBuilder.kt index 2afdd590086..4bd45973622 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirDelegateFieldReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirDelegateFieldReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirDelegateFieldSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDelegateFieldReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirErrorNamedReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirErrorNamedReferenceBuilder.kt index e084ad96956..81a84f24334 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirErrorNamedReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirErrorNamedReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirErrorNamedReferenceImpl import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirErrorNamedReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitSuperReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitSuperReferenceBuilder.kt index e181d8f4282..d1ee7acac34 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitSuperReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitSuperReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirExplicitSuperReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirExplicitSuperReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitThisReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitThisReferenceBuilder.kt index 0a3793e3392..3f82754263a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitThisReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirExplicitThisReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirExplicitThisReference import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirExplicitThisReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirFromMissingDependenciesNamedReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirFromMissingDependenciesNamedReferenceBuilder.kt index 5313766f862..10fee1bc349 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirFromMissingDependenciesNamedReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirFromMissingDependenciesNamedReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirFromMissingDependenciesNamedR import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirFromMissingDependenciesNamedReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirImplicitThisReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirImplicitThisReferenceBuilder.kt index 24ae84371d3..88136292c49 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirImplicitThisReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirImplicitThisReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirImplicitThisReference import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirImplicitThisReferenceBuilder { var boundSymbol: FirBasedSymbol<*>? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirPropertyFromParameterResolvedNamedReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirPropertyFromParameterResolvedNamedReferenceBuilder.kt index 8581a4720fd..c29281762eb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirPropertyFromParameterResolvedNamedReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirPropertyFromParameterResolvedNamedReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPropertyFromParameterResolvedNamedReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedCallableReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedCallableReferenceBuilder.kt index cae83ea9d20..a072200bdd8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedCallableReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedCallableReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedCallableReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedErrorReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedErrorReferenceBuilder.kt index a06bff70fb4..605240fef91 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedErrorReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedErrorReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedErrorReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedNamedReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedNamedReferenceBuilder.kt index d2235241d06..e08f12bb963 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedNamedReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirResolvedNamedReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedNamedReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirSimpleNamedReferenceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirSimpleNamedReferenceBuilder.kt index fd95ba2578f..7579eba3111 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirSimpleNamedReferenceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/builder/FirSimpleNamedReferenceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.references.impl.FirSimpleNamedReference import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.name.Name -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirSimpleNamedReferenceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirBackingFieldReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirBackingFieldReferenceImpl.kt index 646737ec91c..1d60bb6a1c8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirBackingFieldReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirBackingFieldReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirBackingFieldSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirBackingFieldReferenceImpl( override val source: KtSourceElement?, override val resolvedSymbol: FirBackingFieldSymbol, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirDelegateFieldReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirDelegateFieldReferenceImpl.kt index fa86bf3d174..b6eee09d438 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirDelegateFieldReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirDelegateFieldReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.symbols.impl.FirDelegateFieldSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirDelegateFieldReferenceImpl( override val source: KtSourceElement?, override val resolvedSymbol: FirDelegateFieldSymbol, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirErrorNamedReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirErrorNamedReferenceImpl.kt index a59876c63bd..3a37cc706ff 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirErrorNamedReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirErrorNamedReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.references.FirErrorNamedReference import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirErrorNamedReferenceImpl( override val source: KtSourceElement?, override val diagnostic: ConeDiagnostic, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitSuperReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitSuperReference.kt index d7a986cf5aa..4b718eec410 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitSuperReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitSuperReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.references.FirSuperReference import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirExplicitSuperReference( override val source: KtSourceElement?, override val labelName: String?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitThisReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitThisReference.kt index 7c3200912bd..c2fc0615765 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitThisReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirExplicitThisReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.references.FirThisReference import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirExplicitThisReference( override val source: KtSourceElement?, override val labelName: String?, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirFromMissingDependenciesNamedReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirFromMissingDependenciesNamedReferenceImpl.kt index 8a7336a6899..43730ad1757 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirFromMissingDependenciesNamedReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirFromMissingDependenciesNamedReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.references.FirFromMissingDependenciesNamedRefere import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirFromMissingDependenciesNamedReferenceImpl( override val source: KtSourceElement?, override val name: Name, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirImplicitThisReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirImplicitThisReference.kt index 9689a7055e6..deef3855060 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirImplicitThisReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirImplicitThisReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.references.FirThisReference import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirImplicitThisReference( override val boundSymbol: FirBasedSymbol<*>?, override var contextReceiverNumber: Int, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirPropertyFromParameterResolvedNamedReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirPropertyFromParameterResolvedNamedReference.kt index 09beb13310e..f91c6a83c52 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirPropertyFromParameterResolvedNamedReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirPropertyFromParameterResolvedNamedReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirPropertyFromParameterResolvedNamedReference @FirImplementationDetail constructor( override val source: KtSourceElement?, override val name: Name, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedCallableReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedCallableReferenceImpl.kt index 36e307241df..068828fe630 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedCallableReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedCallableReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.types.ConeKotlinType import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirResolvedCallableReferenceImpl( override val source: KtSourceElement?, override val name: Name, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedErrorReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedErrorReferenceImpl.kt index b4ec28e541d..bc56f5dee08 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedErrorReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedErrorReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirResolvedErrorReferenceImpl( override val source: KtSourceElement?, override val name: Name, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedNamedReferenceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedNamedReferenceImpl.kt index bf46af9325e..325ad51bbbb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedNamedReferenceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirResolvedNamedReferenceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.symbols.FirBasedSymbol import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirResolvedNamedReferenceImpl( override val source: KtSourceElement?, override val name: Name, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirSimpleNamedReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirSimpleNamedReference.kt index afe9f42f9fe..ea1f51e6239 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirSimpleNamedReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirSimpleNamedReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.references.FirNamedReference import org.jetbrains.kotlin.name.Name import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirSimpleNamedReference @FirImplementationDetail constructor( override val source: KtSourceElement?, override val name: Name, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirStubReference.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirStubReference.kt index 3a97d7e7ca7..9b51d1dfab6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirStubReference.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/references/impl/FirStubReference.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.references.impl @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.FirImplementationDetail import org.jetbrains.kotlin.fir.references.FirReference import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - object FirStubReference : FirReference() { override val source: KtSourceElement? get() = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirDynamicTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirDynamicTypeRef.kt index d8f052f31ad..3d60fe7bc5a 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirDynamicTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirDynamicTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDynamicTypeRef : FirTypeRefWithNullability() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirErrorTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirErrorTypeRef.kt index 4a0e30dc1cb..7e8c57054b3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirErrorTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirErrorTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.diagnostics.FirDiagnosticHolder import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirErrorTypeRef : FirResolvedTypeRef(), FirDiagnosticHolder { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirFunctionTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirFunctionTypeRef.kt index 55f3002623c..087c0573dde 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirFunctionTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirFunctionTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.FirFunctionTypeParameter import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirFunctionTypeRef : FirTypeRefWithNullability() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirImplicitTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirImplicitTypeRef.kt index 51505bd2c8f..d8795213054 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirImplicitTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirImplicitTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirImplicitTypeRef : FirTypeRef() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirIntersectionTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirIntersectionTypeRef.kt index 6fc916b78d8..c873e86f5a3 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirIntersectionTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirIntersectionTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirIntersectionTypeRef : FirTypeRefWithNullability() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirPlaceholderProjection.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirPlaceholderProjection.kt index 7cac1d1704d..94bdb38d28d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirPlaceholderProjection.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirPlaceholderProjection.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirPlaceholderProjection : FirTypeProjection() { abstract override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirResolvedTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirResolvedTypeRef.kt index 1813753c963..a5bc1ea7635 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirResolvedTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirResolvedTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.mpp.TypeRefMarker import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirResolvedTypeRef : FirTypeRef(), TypeRefMarker { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirStarProjection.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirStarProjection.kt index fa1cb2e0d37..aa4fb8743e7 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirStarProjection.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirStarProjection.kt @@ -3,17 +3,15 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirStarProjection : FirTypeProjection() { abstract override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjection.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjection.kt index d138e5eceeb..749ed459ee6 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjection.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjection.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTypeProjection : FirPureAbstractElement(), FirElement { abstract override val source: KtSourceElement? diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjectionWithVariance.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjectionWithVariance.kt index 4948fe026f6..c2bb42c14a9 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjectionWithVariance.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeProjectionWithVariance.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.types.Variance import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTypeProjectionWithVariance : FirTypeProjection() { abstract override val source: KtSourceElement? abstract val typeRef: FirTypeRef diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRef.kt index c0c2f755183..b7209326780 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -12,11 +15,6 @@ import org.jetbrains.kotlin.fir.FirPureAbstractElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - sealed class FirTypeRef : FirPureAbstractElement(), FirAnnotationContainer { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRefWithNullability.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRefWithNullability.kt index a828c9dd675..455d6782deb 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRefWithNullability.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirTypeRefWithNullability.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTypeRefWithNullability : FirTypeRef() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirUserTypeRef.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirUserTypeRef.kt index a563e0bcf47..6f3d596730b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirUserTypeRef.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/FirUserTypeRef.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.types import org.jetbrains.kotlin.KtSourceElement @@ -10,11 +13,6 @@ import org.jetbrains.kotlin.fir.FirElement import org.jetbrains.kotlin.fir.expressions.FirAnnotation import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirUserTypeRef : FirTypeRefWithNullability() { abstract override val source: KtSourceElement? abstract override val annotations: List diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirDynamicTypeRefBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirDynamicTypeRefBuilder.kt index 5e7b3563360..cf59a3e6d90 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirDynamicTypeRefBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirDynamicTypeRefBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.types.FirDynamicTypeRef import org.jetbrains.kotlin.fir.types.impl.FirDynamicTypeRefImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirDynamicTypeRefBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirFunctionTypeRefBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirFunctionTypeRefBuilder.kt index 3d2dcd6730b..da6154b06af 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirFunctionTypeRefBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirFunctionTypeRefBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -19,11 +22,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.types.impl.FirFunctionTypeRefImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirFunctionTypeRefBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirIntersectionTypeRefBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirIntersectionTypeRefBuilder.kt index ae245b76c50..390df84a201 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirIntersectionTypeRefBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirIntersectionTypeRefBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -18,11 +21,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.types.impl.FirIntersectionTypeRefImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirIntersectionTypeRefBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirPlaceholderProjectionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirPlaceholderProjectionBuilder.kt index 52e5687f3eb..bdde9e60cd1 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirPlaceholderProjectionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirPlaceholderProjectionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.types.FirPlaceholderProjection import org.jetbrains.kotlin.fir.types.impl.FirPlaceholderProjectionImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirPlaceholderProjectionBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirResolvedTypeRefBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirResolvedTypeRefBuilder.kt index e5d82711b20..e7e0f014b93 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirResolvedTypeRefBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirResolvedTypeRefBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -20,11 +23,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.fir.types.impl.FirResolvedTypeRefImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirResolvedTypeRefBuilder : FirAnnotationContainerBuilder { override var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirStarProjectionBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirStarProjectionBuilder.kt index c12378b955c..8158edeaf02 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirStarProjectionBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirStarProjectionBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.types.FirStarProjection import org.jetbrains.kotlin.fir.types.impl.FirStarProjectionImpl import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirStarProjectionBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirTypeProjectionWithVarianceBuilder.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirTypeProjectionWithVarianceBuilder.kt index 923d003dd6a..b94b8afe215 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirTypeProjectionWithVarianceBuilder.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/builder/FirTypeProjectionWithVarianceBuilder.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.builder @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.types.impl.FirTypeProjectionWithVarianceImpl import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.types.Variance -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - @FirBuilderDsl class FirTypeProjectionWithVarianceBuilder { var source: KtSourceElement? = null diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirDynamicTypeRefImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirDynamicTypeRefImpl.kt index f1999cc723c..929ce17c6a8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirDynamicTypeRefImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirDynamicTypeRefImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -14,11 +17,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirDynamicTypeRefImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirFunctionTypeRefImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirFunctionTypeRefImpl.kt index 0277ff54f4d..c0b2c234c83 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirFunctionTypeRefImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirFunctionTypeRefImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -16,11 +19,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirFunctionTypeRefImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirIntersectionTypeRefImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirIntersectionTypeRefImpl.kt index 60d150abc41..67c9edd7e7f 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirIntersectionTypeRefImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirIntersectionTypeRefImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -15,11 +18,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirIntersectionTypeRefImpl( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirPlaceholderProjectionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirPlaceholderProjectionImpl.kt index 5edb7c1102e..62769b4740d 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirPlaceholderProjectionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirPlaceholderProjectionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.types.FirPlaceholderProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirPlaceholderProjectionImpl( override val source: KtSourceElement?, ) : FirPlaceholderProjection() { diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirResolvedTypeRefImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirResolvedTypeRefImpl.kt index d654fb0292b..07ddeb144f5 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirResolvedTypeRefImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirResolvedTypeRefImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -17,11 +20,6 @@ import org.jetbrains.kotlin.fir.visitors.* import org.jetbrains.kotlin.fir.MutableOrEmptyList import org.jetbrains.kotlin.fir.builder.toMutableOrEmpty -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - class FirResolvedTypeRefImpl @FirImplementationDetail constructor( override val source: KtSourceElement?, override var annotations: MutableOrEmptyList, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirStarProjectionImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirStarProjectionImpl.kt index b57a73459f7..52bdaed6f2b 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirStarProjectionImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirStarProjectionImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -11,11 +14,6 @@ import org.jetbrains.kotlin.KtSourceElement import org.jetbrains.kotlin.fir.types.FirStarProjection import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirStarProjectionImpl( override val source: KtSourceElement?, ) : FirStarProjection() { diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirTypeProjectionWithVarianceImpl.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirTypeProjectionWithVarianceImpl.kt index b392ae45c33..e73a0f0998e 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirTypeProjectionWithVarianceImpl.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/types/impl/FirTypeProjectionWithVarianceImpl.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + @file:Suppress("DuplicatedCode", "unused") package org.jetbrains.kotlin.fir.types.impl @@ -13,11 +16,6 @@ import org.jetbrains.kotlin.fir.types.FirTypeRef import org.jetbrains.kotlin.types.Variance import org.jetbrains.kotlin.fir.visitors.* -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - internal class FirTypeProjectionWithVarianceImpl( override val source: KtSourceElement?, override var typeRef: FirTypeRef, diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitor.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitor.kt index 3c1f78730af..7c48a9dda80 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitor.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitor.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.visitors import org.jetbrains.kotlin.fir.FirElement @@ -162,11 +165,6 @@ import org.jetbrains.kotlin.fir.contracts.FirLegacyRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDefaultVisitor : FirVisitor() { override fun visitTypeRef(typeRef: FirTypeRef, data: D): R = visitAnnotationContainer(typeRef, data) diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitorVoid.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitorVoid.kt index 19a00be2d70..ee3d5b806ad 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitorVoid.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirDefaultVisitorVoid.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.visitors import org.jetbrains.kotlin.fir.FirElement @@ -162,11 +165,6 @@ import org.jetbrains.kotlin.fir.contracts.FirLegacyRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirDefaultVisitorVoid : FirVisitorVoid() { override fun visitTypeRef(typeRef: FirTypeRef) = visitAnnotationContainer(typeRef) diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirTransformer.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirTransformer.kt index 9431b688ee8..43b93bda4c8 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirTransformer.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirTransformer.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.visitors import org.jetbrains.kotlin.fir.FirElement @@ -162,11 +165,6 @@ import org.jetbrains.kotlin.fir.contracts.FirLegacyRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirTransformer : FirVisitor() { abstract fun transformElement(element: E, data: D): E diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitor.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitor.kt index 53058d65523..7d47cc248a4 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitor.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitor.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.visitors import org.jetbrains.kotlin.fir.FirElement @@ -162,11 +165,6 @@ import org.jetbrains.kotlin.fir.contracts.FirLegacyRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirVisitor { abstract fun visitElement(element: FirElement, data: D): R diff --git a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitorVoid.kt b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitorVoid.kt index b3aa0d59510..7dc1349e7c2 100644 --- a/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitorVoid.kt +++ b/compiler/fir/tree/gen/org/jetbrains/kotlin/fir/visitors/FirVisitorVoid.kt @@ -3,6 +3,9 @@ * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. */ +// This file was generated automatically. See compiler/fir/tree/tree-generator/Readme.md. +// DO NOT MODIFY IT MANUALLY. + package org.jetbrains.kotlin.fir.visitors import org.jetbrains.kotlin.fir.FirElement @@ -162,11 +165,6 @@ import org.jetbrains.kotlin.fir.contracts.FirLegacyRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirRawContractDescription import org.jetbrains.kotlin.fir.contracts.FirResolvedContractDescription -/* - * This file was generated automatically - * DO NOT MODIFY IT MANUALLY - */ - abstract class FirVisitorVoid : FirVisitor() { abstract fun visitElement(element: FirElement) diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/builder.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/builder.kt index a42b49ebc8f..7c544ec1ae7 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/builder.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/builder.kt @@ -7,31 +7,22 @@ package org.jetbrains.kotlin.fir.tree.generator.printer import org.jetbrains.kotlin.fir.tree.generator.declarationAttributesType import org.jetbrains.kotlin.fir.tree.generator.model.* +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile +import org.jetbrains.kotlin.generators.tree.printer.printGeneratedType import org.jetbrains.kotlin.generators.tree.typeWithArguments import org.jetbrains.kotlin.utils.SmartPrinter import org.jetbrains.kotlin.utils.withIndent import java.io.File -fun Builder.generateCode(generationPath: File): GeneratedFile { - val dir = generationPath.resolve(packageName.replace(".", "/")) - val file = File(dir, "$type.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("@file:Suppress(\"DuplicatedCode\", \"unused\")") - println() - println("package $packageName") - println() +fun Builder.generateCode(generationPath: File): GeneratedFile = + printGeneratedType(generationPath, TREE_GENERATOR_README, packageName, type, fileSuppressions = listOf("DuplicatedCode", "unused")) { val imports = collectImports() imports.forEach { println("import $it") } if (imports.isNotEmpty()) { println() } - printGeneratedMessage() printBuilder(this@generateCode) } - return GeneratedFile(file, stringBuilder.toString()) -} private fun SmartPrinter.printBuilder(builder: Builder) { if (builder is LeafBuilder && builder.allFields.isEmpty()) { diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/element.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/element.kt index cfefa7bd4ae..4270058be53 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/element.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/element.kt @@ -11,31 +11,20 @@ import org.jetbrains.kotlin.fir.tree.generator.model.Field import org.jetbrains.kotlin.fir.tree.generator.pureAbstractElementType import org.jetbrains.kotlin.fir.tree.generator.util.get import org.jetbrains.kotlin.generators.tree.* -import org.jetbrains.kotlin.generators.tree.printer.braces -import org.jetbrains.kotlin.generators.tree.printer.multipleUpperBoundsList -import org.jetbrains.kotlin.generators.tree.printer.typeParameters +import org.jetbrains.kotlin.generators.tree.printer.* import org.jetbrains.kotlin.utils.SmartPrinter import org.jetbrains.kotlin.utils.withIndent import java.io.File -fun Element.generateCode(generationPath: File): GeneratedFile { - val dir = generationPath.resolve(packageName.replace(".", "/")) - val file = File(dir, "$type.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("package $packageName") - println() +fun Element.generateCode(generationPath: File): GeneratedFile = + printGeneratedType(generationPath, TREE_GENERATOR_README, packageName, type) { val imports = collectImports() imports.forEach { println("import $it") } if (imports.isNotEmpty()) { println() } - printGeneratedMessage() printElement(this@generateCode) } - return GeneratedFile(file, stringBuilder.toString()) -} fun SmartPrinter.printElement(element: Element) { with(element) { diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/implementation.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/implementation.kt index f29a08d707c..241ec33dec1 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/implementation.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/implementation.kt @@ -8,33 +8,24 @@ package org.jetbrains.kotlin.fir.tree.generator.printer import org.jetbrains.kotlin.fir.tree.generator.model.* import org.jetbrains.kotlin.fir.tree.generator.pureAbstractElementType import org.jetbrains.kotlin.generators.tree.* +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile import org.jetbrains.kotlin.generators.tree.printer.braces +import org.jetbrains.kotlin.generators.tree.printer.printGeneratedType import org.jetbrains.kotlin.generators.tree.printer.typeParameters import org.jetbrains.kotlin.utils.SmartPrinter import org.jetbrains.kotlin.utils.addToStdlib.ifNotEmpty import org.jetbrains.kotlin.utils.withIndent import java.io.File -fun Implementation.generateCode(generationPath: File): GeneratedFile { - val dir = generationPath.resolve(packageName.replace(".", "/")) - val file = File(dir, "$type.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("@file:Suppress(\"DuplicatedCode\", \"unused\")") - println() - println("package $packageName") - println() +fun Implementation.generateCode(generationPath: File): GeneratedFile = + printGeneratedType(generationPath, TREE_GENERATOR_README, packageName, type, fileSuppressions = listOf("DuplicatedCode", "unused")) { val imports = collectImports() imports.forEach { println("import $it") } if (imports.isNotEmpty()) { println() } - printGeneratedMessage() printImplementation(this@generateCode) } - return GeneratedFile(file, stringBuilder.toString()) -} fun SmartPrinter.printImplementation(implementation: Implementation) { fun Field.transform() { diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/main.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/main.kt index b04f802773f..cdb3add9e20 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/main.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/main.kt @@ -6,15 +6,16 @@ package org.jetbrains.kotlin.fir.tree.generator.printer import org.jetbrains.kotlin.fir.tree.generator.context.AbstractFirTreeBuilder +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile import org.jetbrains.kotlin.generators.util.GeneratorsFileUtil.GENERATED_MESSAGE import org.jetbrains.kotlin.utils.SmartPrinter import java.io.File -private val COPYRIGHT = File("license/COPYRIGHT_HEADER.txt").readText() - const val VISITOR_PACKAGE = "org.jetbrains.kotlin.fir.visitors" const val BASE_PACKAGE = "org.jetbrains.kotlin.fir" +internal const val TREE_GENERATOR_README = "compiler/fir/tree/tree-generator/Readme.md" + fun generateElements(builder: AbstractFirTreeBuilder, generationPath: File): List { val generatedFiles = mutableListOf() builder.elements.mapTo(generatedFiles) { it.generateCode(generationPath) } @@ -29,13 +30,3 @@ fun generateElements(builder: AbstractFirTreeBuilder, generationPath: File): Lis generatedFiles += printTransformer(builder.elements, generationPath) return generatedFiles } - -fun SmartPrinter.printCopyright() { - println(COPYRIGHT) - println() -} - -fun SmartPrinter.printGeneratedMessage() { - println(GENERATED_MESSAGE) - println() -} diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/transformer.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/transformer.kt index 969fda6be09..bc735572380 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/transformer.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/transformer.kt @@ -7,26 +7,18 @@ package org.jetbrains.kotlin.fir.tree.generator.printer import org.jetbrains.kotlin.fir.tree.generator.context.AbstractFirTreeBuilder import org.jetbrains.kotlin.fir.tree.generator.model.Element +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile import org.jetbrains.kotlin.generators.tree.printer.multipleUpperBoundsList +import org.jetbrains.kotlin.generators.tree.printer.printGeneratedType import org.jetbrains.kotlin.generators.tree.printer.typeParameters import org.jetbrains.kotlin.generators.tree.typeWithArguments -import org.jetbrains.kotlin.utils.SmartPrinter import org.jetbrains.kotlin.utils.withIndent - import java.io.File -fun printTransformer(elements: List, generationPath: File): GeneratedFile { - val dir = File(generationPath, VISITOR_PACKAGE.replace(".", "/")) - val file = File(dir, "FirTransformer.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("package $VISITOR_PACKAGE") - println() +fun printTransformer(elements: List, generationPath: File): GeneratedFile = + printGeneratedType(generationPath, TREE_GENERATOR_README, VISITOR_PACKAGE, "FirTransformer") { elements.forEach { println("import ${it.fullQualifiedName}") } println() - printGeneratedMessage() - println("abstract class FirTransformer : FirVisitor() {") println() withIndent { @@ -66,5 +58,3 @@ fun printTransformer(elements: List, generationPath: File): GeneratedFi } println("}") } - return GeneratedFile(file, stringBuilder.toString()) -} diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/utils.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/utils.kt index 08d61e59402..60e3bdfae89 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/utils.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/utils.kt @@ -11,9 +11,6 @@ import org.jetbrains.kotlin.fir.tree.generator.model.* import org.jetbrains.kotlin.fir.tree.generator.pureAbstractElementType import org.jetbrains.kotlin.generators.tree.* import org.jetbrains.kotlin.utils.addToStdlib.ifNotEmpty -import java.io.File - -class GeneratedFile(val file: File, val newText: String) enum class ImportKind(val postfix: String) { Element(""), Implementation(".impl"), Builder(".builder") diff --git a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/visitor.kt b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/visitor.kt index 5a1d1e9812f..43333ab6dd2 100644 --- a/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/visitor.kt +++ b/compiler/fir/tree/tree-generator/src/org/jetbrains/kotlin/fir/tree/generator/printer/visitor.kt @@ -8,7 +8,9 @@ package org.jetbrains.kotlin.fir.tree.generator.printer import org.jetbrains.kotlin.fir.tree.generator.FirTreeBuilder import org.jetbrains.kotlin.fir.tree.generator.context.AbstractFirTreeBuilder import org.jetbrains.kotlin.fir.tree.generator.model.Element +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile import org.jetbrains.kotlin.generators.tree.printer.multipleUpperBoundsList +import org.jetbrains.kotlin.generators.tree.printer.printGeneratedType import org.jetbrains.kotlin.generators.tree.printer.typeParameters import org.jetbrains.kotlin.generators.tree.typeWithArguments import org.jetbrains.kotlin.utils.SmartPrinter @@ -32,16 +34,9 @@ private fun Element.getNameOfSupertypeForDefaultVisiting(): String { fun printVisitor(elements: List, generationPath: File, visitSuperTypeByDefault: Boolean): GeneratedFile { val className = if (visitSuperTypeByDefault) "FirDefaultVisitor" else "FirVisitor" - val dir = File(generationPath, VISITOR_PACKAGE.replace(".", "/")) - val file = File(dir, "$className.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("package $VISITOR_PACKAGE") - println() + return printGeneratedType(generationPath, TREE_GENERATOR_README, VISITOR_PACKAGE, className) { elements.forEach { println("import ${it.fullQualifiedName}") } println() - printGeneratedMessage() print("abstract class $className ") if (visitSuperTypeByDefault) { @@ -76,22 +71,13 @@ fun printVisitor(elements: List, generationPath: File, visitSuperTypeBy popIndent() println("}") } - return GeneratedFile(file, stringBuilder.toString()) } -fun printVisitorVoid(elements: List, generationPath: File): GeneratedFile { - val dir = File(generationPath, VISITOR_PACKAGE.replace(".", "/")) - val file = File(dir, "FirVisitorVoid.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("package $VISITOR_PACKAGE") - println() +fun printVisitorVoid(elements: List, generationPath: File): GeneratedFile = + printGeneratedType(generationPath, TREE_GENERATOR_README, VISITOR_PACKAGE, "FirVisitorVoid") { elements.forEach { println("import ${it.fullQualifiedName}") } println() - printGeneratedMessage() - println("abstract class FirVisitorVoid : FirVisitor() {") withIndent { @@ -124,23 +110,12 @@ fun printVisitorVoid(elements: List, generationPath: File): GeneratedFi } println("}") } - return GeneratedFile(file, stringBuilder.toString()) -} -fun printDefaultVisitorVoid(elements: List, generationPath: File): GeneratedFile { - val className = "FirDefaultVisitorVoid" - val dir = File(generationPath, VISITOR_PACKAGE.replace(".", "/")) - val file = File(dir, "$className.kt") - val stringBuilder = StringBuilder() - SmartPrinter(stringBuilder).apply { - printCopyright() - println("package $VISITOR_PACKAGE") - println() +fun printDefaultVisitorVoid(elements: List, generationPath: File): GeneratedFile = + printGeneratedType(generationPath, TREE_GENERATOR_README, VISITOR_PACKAGE, "FirDefaultVisitorVoid") { elements.forEach { println("import ${it.fullQualifiedName}") } println() - printGeneratedMessage() - - println("abstract class $className : FirVisitorVoid() {") + println("abstract class FirDefaultVisitorVoid : FirVisitorVoid() {") pushIndent() for (element in elements) { @@ -154,5 +129,3 @@ fun printDefaultVisitorVoid(elements: List, generationPath: File): Gene popIndent() println("}") } - return GeneratedFile(file, stringBuilder.toString()) -} diff --git a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Common.kt b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Common.kt index ad0d007fb46..ac7f19e5497 100644 --- a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Common.kt +++ b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Common.kt @@ -7,23 +7,19 @@ package org.jetbrains.kotlin.ir.generator.print import com.squareup.kotlinpoet.FileSpec import com.squareup.kotlinpoet.TypeSpec -import org.jetbrains.kotlin.ir.generator.util.GeneratedFile +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile +import org.jetbrains.kotlin.generators.tree.printer.printGeneratedType import org.jetbrains.kotlin.ir.generator.util.Import import java.io.File -private val COPYRIGHT by lazy { File("license/COPYRIGHT_HEADER.txt").readText() } -private val GENERATED_MESSAGE = """ - // This file was generated automatically. See compiler/ir/ir.tree/tree-generator/ReadMe.md. - // DO NOT MODIFY IT MANUALLY. - """.trimIndent() -private val PREFIX by lazy { "$COPYRIGHT\n\n$GENERATED_MESSAGE\n\n" } +internal const val TREE_GENERATOR_README = "compiler/ir/ir.tree/tree-generator/ReadMe.md" fun printTypeCommon( generationPath: File, packageName: String, type: TypeSpec, additionalImports: List = emptyList(), -): GeneratedFile { +): GeneratedFile = printGeneratedType(generationPath, TREE_GENERATOR_README, packageName, type.name!!) { val code = FileSpec.builder(packageName, type.name!!) .apply { additionalImports.forEach { addImport(it.packageName, it.className) } @@ -32,6 +28,7 @@ fun printTypeCommon( .addType(type) .build() .toString() + .replace("package $packageName\n\n", "") .unbacktickIdentifiers("data", "value", "operator", "constructor", "delegate", "receiver", "field") .replace("public ", "") .replace(":\\s*Unit".toRegex(), "") @@ -39,9 +36,7 @@ fun printTypeCommon( // Half-baked attempt to remove double indent generated by KotlinPoet, which is not idiomatic according to the Kotlin style guide .replace(" visitor.visit", " visitor.visit") .replace(" accept(transformer, data)", " accept(transformer, data)") - - val text = PREFIX + code - return GeneratedFile(getPathForFile(generationPath, packageName, type.name!!), text) + print(code) } private fun String.unbacktickIdentifiers(vararg identifiers: String): String { @@ -51,8 +46,3 @@ private fun String.unbacktickIdentifiers(vararg identifiers: String): String { } return result } - -fun getPathForFile(generationPath: File, packageName: String, typeName: String): File { - val dir = generationPath.resolve(packageName.replace(".", "/")) - return File(dir, "$typeName.kt") -} diff --git a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Factory.kt b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Factory.kt index 31400ffd36d..81fa1808739 100644 --- a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Factory.kt +++ b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/Factory.kt @@ -6,14 +6,14 @@ package org.jetbrains.kotlin.ir.generator.print import com.squareup.kotlinpoet.* +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile +import org.jetbrains.kotlin.generators.tree.type import org.jetbrains.kotlin.ir.generator.IrTree import org.jetbrains.kotlin.ir.generator.Packages import org.jetbrains.kotlin.ir.generator.config.UseFieldAsParameterInIrFactoryStrategy import org.jetbrains.kotlin.ir.generator.model.Model -import org.jetbrains.kotlin.ir.generator.util.GeneratedFile import org.jetbrains.kotlin.ir.generator.util.parameterizedByIfAny import org.jetbrains.kotlin.ir.generator.util.tryParameterizedBy -import org.jetbrains.kotlin.generators.tree.type import org.jetbrains.kotlin.util.capitalizeDecapitalize.capitalizeAsciiOnly import org.jetbrains.kotlin.utils.addToStdlib.applyIf import java.io.File diff --git a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/VisitorsAndTransformers.kt b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/VisitorsAndTransformers.kt index 28f492362bb..e8a21a36727 100644 --- a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/VisitorsAndTransformers.kt +++ b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/print/VisitorsAndTransformers.kt @@ -7,11 +7,11 @@ package org.jetbrains.kotlin.ir.generator.print import com.squareup.kotlinpoet.* import com.squareup.kotlinpoet.ParameterizedTypeName.Companion.parameterizedBy +import org.jetbrains.kotlin.generators.tree.printer.GeneratedFile import org.jetbrains.kotlin.ir.generator.IrTree import org.jetbrains.kotlin.ir.generator.VISITOR_PACKAGE import org.jetbrains.kotlin.ir.generator.irTypeType import org.jetbrains.kotlin.ir.generator.model.* -import org.jetbrains.kotlin.ir.generator.util.GeneratedFile import org.jetbrains.kotlin.util.capitalizeDecapitalize.capitalizeAsciiOnly import java.io.File diff --git a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/util/Utils.kt b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/util/Utils.kt index e05a722c7ea..d0bf2b6d72c 100644 --- a/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/util/Utils.kt +++ b/compiler/ir/ir.tree/tree-generator/src/org/jetbrains/kotlin/ir/generator/util/Utils.kt @@ -10,9 +10,6 @@ import com.squareup.kotlinpoet.CodeBlock import com.squareup.kotlinpoet.ParameterizedTypeName import com.squareup.kotlinpoet.ParameterizedTypeName.Companion.parameterizedBy import com.squareup.kotlinpoet.TypeName -import java.io.File - -class GeneratedFile(val file: File, val newText: String) class Import(val packageName: String, val className: String) diff --git a/generators/tree-generator-common/src/org/jetbrains/kotlin/generators/tree/printer/common.kt b/generators/tree-generator-common/src/org/jetbrains/kotlin/generators/tree/printer/common.kt new file mode 100644 index 00000000000..8f25831002a --- /dev/null +++ b/generators/tree-generator-common/src/org/jetbrains/kotlin/generators/tree/printer/common.kt @@ -0,0 +1,49 @@ +/* + * Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors. + * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file. + */ + +package org.jetbrains.kotlin.generators.tree.printer + +import org.jetbrains.kotlin.utils.SmartPrinter +import java.io.File + +private val COPYRIGHT by lazy { File("license/COPYRIGHT_HEADER.txt").readText() } + +class GeneratedFile(val file: File, val newText: String) + +private fun getPathForFile(generationPath: File, packageName: String, typeName: String): File { + val dir = generationPath.resolve(packageName.replace(".", "/")) + return File(dir, "$typeName.kt") +} + +fun printGeneratedType( + generationPath: File, + treeGeneratorReadMe: String, + packageName: String, + typeName: String, + fileSuppressions: List = emptyList(), + body: SmartPrinter.() -> Unit, +): GeneratedFile { + val stringBuilder = StringBuilder() + val file = getPathForFile(generationPath, packageName, typeName) + SmartPrinter(stringBuilder).body() + return GeneratedFile( + file, + buildString { + appendLine(COPYRIGHT) + appendLine() + append("// This file was generated automatically. See ") + append(treeGeneratorReadMe) + appendLine(".") + appendLine("// DO NOT MODIFY IT MANUALLY.") + appendLine() + if (fileSuppressions.isNotEmpty()) { + fileSuppressions.joinTo(this, prefix = "@file:Suppress(", postfix = ")\n\n") { "\"$it\"" } + } + appendLine("package $packageName") + appendLine() + append(stringBuilder) + } + ) +} \ No newline at end of file