├── .github └── workflows │ ├── maven.yaml │ └── release.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api ├── api-core │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ ├── io │ │ └── github │ │ │ └── paullo612 │ │ │ └── mlfx │ │ │ └── api │ │ │ ├── CompileFXML.java │ │ │ ├── CompiledFXMLLoader.java │ │ │ ├── CompiledLoadException.java │ │ │ ├── ControllerAccessor.java │ │ │ ├── ControllerAccessorFactory.java │ │ │ ├── GeneratedByMLFX.java │ │ │ ├── MLFXLoader.java │ │ │ ├── ObservableListenerHelper.java │ │ │ ├── ObservableListenerHelperImpl.java │ │ │ ├── Result.java │ │ │ ├── internal │ │ │ ├── MLFXLoaderDelegate.java │ │ │ ├── impl │ │ │ │ └── MLFXLoaderDelegateImpl.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ └── module-info.java ├── internal-stub │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── module-info.java ├── micronaut │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── io │ │ └── github │ │ └── paullo612 │ │ └── mlfx │ │ └── api │ │ └── internal │ │ └── impl │ │ ├── ControllerAccessorImpl.java │ │ ├── MLFXLoaderDelegateImpl.java │ │ └── package-info.java └── pom.xml ├── compiler ├── compiler-core │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── antlr4 │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── paullo612 │ │ │ │ └── mlfx │ │ │ │ └── expression │ │ │ │ └── FXMLExpression.g4 │ │ ├── java │ │ │ └── io │ │ │ │ └── github │ │ │ │ └── paullo612 │ │ │ │ └── mlfx │ │ │ │ ├── compiler │ │ │ │ ├── BindingExpressionRendererImpl.java │ │ │ │ ├── CompileErrorException.java │ │ │ │ ├── CompileFXMLVisitor.java │ │ │ │ ├── CompileTask.java │ │ │ │ ├── CompilerContext.java │ │ │ │ ├── CompilerContextImpl.java │ │ │ │ ├── FXMLCompiler.java │ │ │ │ ├── ProcessingInstructions.java │ │ │ │ ├── RootRenderer.java │ │ │ │ ├── TaskFactory.java │ │ │ │ ├── elements │ │ │ │ │ ├── CopyFXMLElement.java │ │ │ │ │ ├── DefineFXMLElement.java │ │ │ │ │ ├── ElementUtils.java │ │ │ │ │ ├── FXMLElement.java │ │ │ │ │ ├── IdentifiableFXMLElement.java │ │ │ │ │ ├── IncludeFXMLElement.java │ │ │ │ │ ├── InstanceDeclarationFXMLElement.java │ │ │ │ │ ├── LoadableFXMLElement.java │ │ │ │ │ ├── PropertyValueLoader.java │ │ │ │ │ ├── ReadOnlyInstanceProperty.java │ │ │ │ │ ├── ReadWriteInstanceProperty.java │ │ │ │ │ ├── ReferenceFXMLElement.java │ │ │ │ │ ├── RenderUtils.java │ │ │ │ │ ├── RootFXMLElement.java │ │ │ │ │ ├── StaticPropertyFXMLElement.java │ │ │ │ │ └── package-info.java │ │ │ │ └── package-info.java │ │ │ │ └── expression │ │ │ │ ├── AbstractNamedContinuation.java │ │ │ │ ├── AddContinuation.java │ │ │ │ ├── AndContinuation.java │ │ │ │ ├── BinaryBoxableContinuation.java │ │ │ │ ├── BindingContext.java │ │ │ │ ├── BindingImpl.java │ │ │ │ ├── BooleanContinuation.java │ │ │ │ ├── BooleanLiteral.java │ │ │ │ ├── BooleanLiteralContinuation.java │ │ │ │ ├── BoxableContinuation.java │ │ │ │ ├── CollectionContinuation.java │ │ │ │ ├── Continuation.java │ │ │ │ ├── ContinuationContainer.java │ │ │ │ ├── DecimalLiteral.java │ │ │ │ ├── DecimalLiteralContinuation.java │ │ │ │ ├── DivideContinuation.java │ │ │ │ ├── EqualToContinuation.java │ │ │ │ ├── EqualityContinuation.java │ │ │ │ ├── ExpressionContext.java │ │ │ │ ├── ExpressionContinuation.java │ │ │ │ ├── ExpressionContinuationVisitor.java │ │ │ │ ├── Expressions.java │ │ │ │ ├── FloatingPointLiteral.java │ │ │ │ ├── FloatingPointLiteralContinuation.java │ │ │ │ ├── GreaterThanContinuation.java │ │ │ │ ├── GreaterThanOrEqualContinuation.java │ │ │ │ ├── Literal.java │ │ │ │ ├── LiteralVisitor.java │ │ │ │ ├── LowerThanContinuation.java │ │ │ │ ├── LowerThanOrEqualContinuation.java │ │ │ │ ├── MathContinuation.java │ │ │ │ ├── MethodCallContinuation.java │ │ │ │ ├── MultiplyContinuation.java │ │ │ │ ├── NegateContinuation.java │ │ │ │ ├── NotContinuation.java │ │ │ │ ├── NotEqualToContinuation.java │ │ │ │ ├── NullLiteral.java │ │ │ │ ├── NullLiteralContinuation.java │ │ │ │ ├── NumberBoxableContinuation.java │ │ │ │ ├── NumberComparisonContinuation.java │ │ │ │ ├── NumberContinuation.java │ │ │ │ ├── OrContinuation.java │ │ │ │ ├── PropertyReadContinuation.java │ │ │ │ ├── RemainderContinuation.java │ │ │ │ ├── RenderingAdapter.java │ │ │ │ ├── SavePointRenderingAdapter.java │ │ │ │ ├── ScopeReadContinuation.java │ │ │ │ ├── ShortCircuitContinuation.java │ │ │ │ ├── StaticBindingImpl.java │ │ │ │ ├── StringLiteral.java │ │ │ │ ├── StringLiteralContinuation.java │ │ │ │ ├── SubtractContinuation.java │ │ │ │ ├── TypedContinuation.java │ │ │ │ └── package-info.java │ │ ├── javadoc │ │ │ └── README │ │ └── version-resources │ │ │ └── io │ │ │ └── github │ │ │ └── paullo612 │ │ │ └── mlfx │ │ │ └── compiler │ │ │ └── VersionConstants.java │ │ └── test │ │ ├── groovy │ │ └── io │ │ │ └── github │ │ │ └── paullo612 │ │ │ └── mlfx │ │ │ ├── compiler │ │ │ ├── CompileSpec.groovy │ │ │ └── ComplianceSpec.groovy │ │ │ └── expression │ │ │ ├── BindingExpressionSpec.groovy │ │ │ ├── BooleanExpressionSpec.groovy │ │ │ ├── CollectionExpressionSpec.groovy │ │ │ ├── ComparisonExpressionSpec.groovy │ │ │ ├── EqualityExpressionSpec.groovy │ │ │ ├── ExpressionSpec.groovy │ │ │ ├── LiteralExpressionSpec.groovy │ │ │ ├── MathExpressionSpec.groovy │ │ │ ├── MethodCallExpressionSpec.groovy │ │ │ ├── PropertyReadExpressionSpec.groovy │ │ │ └── ScopeReadExpressionSpec.groovy │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── paullo612 │ │ │ └── mlfx │ │ │ ├── compiler │ │ │ ├── BindingContextImpl.java │ │ │ ├── ExpressionVisitor.java │ │ │ └── test │ │ │ │ ├── AnotherGeneric.java │ │ │ │ ├── Car.java │ │ │ │ ├── CoercibleIdentifiable.java │ │ │ │ ├── Crankpin.java │ │ │ │ ├── Crankshaft.java │ │ │ │ ├── Engine.java │ │ │ │ ├── EngineLocation.java │ │ │ │ ├── EngineType.java │ │ │ │ ├── Flywheel.java │ │ │ │ ├── FooFactory.java │ │ │ │ ├── Generic.java │ │ │ │ ├── GenericHolder.java │ │ │ │ ├── GenericHolderBase.java │ │ │ │ ├── Identifiable.java │ │ │ │ ├── Trunk.java │ │ │ │ └── Wheel.java │ │ │ └── expression │ │ │ └── test │ │ │ ├── Expression.java │ │ │ ├── ExpressionIntroduction.java │ │ │ ├── ExpressionIntroductionDelegate.java │ │ │ ├── Numbers.java │ │ │ ├── OverloadType.java │ │ │ ├── Overloaded.java │ │ │ ├── Properties.java │ │ │ └── PropertiesImpl.java │ │ └── resources │ │ └── io │ │ └── github │ │ └── paullo612 │ │ └── mlfx │ │ └── compiler │ │ └── compliance │ │ ├── attribute_instance_property │ │ ├── AttributeInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── attribute_static_property │ │ ├── AttributeStaticProperty.java │ │ └── staticProperty.fxml │ │ ├── bundle │ │ ├── Bundle.java │ │ ├── bundle.fxml │ │ └── bundle.properties │ │ ├── coercible_id_property │ │ ├── CoercibleIdProperty.java │ │ └── idProperty.fxml │ │ ├── collection │ │ ├── Collection.java │ │ └── collection.fxml │ │ ├── default_instance_property │ │ ├── DefaultInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── default_instance_property_fx_define │ │ ├── DefaultInstancePropertyFxDefine.java │ │ └── fxDefine.fxml │ │ ├── default_string_instance_property │ │ ├── DefaultStringInstanceProperty.java │ │ ├── instanceProperty.fxml │ │ └── nestedInstanceProperty.fxml │ │ ├── empty_attribute_instance_property │ │ ├── EmptyAttributeInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── empty_default_string_instance_property │ │ ├── EmptyDefaultStringInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── empty_string_read_only_instance_property │ │ ├── EmptyStringReadOnlyInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── enum_fx_constant │ │ ├── EnumFxConstant.java │ │ └── fxConstant.fxml │ │ ├── expression_handlers │ │ ├── Controller.java │ │ ├── Handlers.java │ │ └── handlers.fxml │ │ ├── external_fx_controller │ │ ├── FxController.java │ │ ├── FxControllerController.java │ │ └── fxController.fxml │ │ ├── fx_controller │ │ ├── FxController.java │ │ ├── MyController.java │ │ └── fxController.fxml │ │ ├── fx_copy │ │ ├── FxCopy.java │ │ └── fxCopy.fxml │ │ ├── fx_define │ │ ├── FxDefine.java │ │ └── fxDefine.fxml │ │ ├── fx_factory │ │ ├── FxFactory.java │ │ └── fxFactory.fxml │ │ ├── fx_include │ │ ├── Include.java │ │ ├── anotherCar.fxml_nc │ │ ├── anotherCar.properties │ │ ├── anotherEngine.fxml │ │ ├── anotherEngine.properties │ │ ├── car.fxml │ │ ├── engine.fxml │ │ └── wheel.fxml │ │ ├── fx_reference │ │ ├── FxReference.java │ │ └── fxReference.fxml │ │ ├── fx_root │ │ ├── FxRoot.java │ │ ├── FxRootRoot.java │ │ └── fxRoot.fxml │ │ ├── fx_value │ │ ├── FxValue.java │ │ └── fxValue.fxml │ │ ├── generic_property │ │ ├── GenericProperty.java │ │ └── genericProperty.fxml │ │ ├── generic_property_expression │ │ ├── GenericPropertyExpression.java │ │ ├── boundGenericProperty.fxml_nc │ │ └── genericPropertyExpression.fxml │ │ ├── handlers │ │ ├── Controller.java │ │ ├── Handlers.java │ │ └── handlers.fxml │ │ ├── id_property │ │ ├── IdProperty.java │ │ └── idProperty.fxml │ │ ├── initializable_fx_controller │ │ ├── FxController.java │ │ ├── MyController.java │ │ └── fxController.fxml │ │ ├── initialize_fx_controller │ │ ├── FxController.java │ │ ├── MyController.java │ │ └── fxController.fxml │ │ ├── inject │ │ ├── Controller.java │ │ ├── Inject.java │ │ └── inject.fxml │ │ ├── instance_property │ │ ├── InstanceProperty.java │ │ ├── readOnlyInstanceProperty.fxml │ │ ├── readWriteInstanceProperty.fxml │ │ ├── staticReadOnlyInstanceProperty.fxml │ │ └── staticReadOnlyInstanceProperty.fxml_nc │ │ ├── multiple_instance_properties │ │ ├── MultipleInstanceProperties.java │ │ └── instanceProperty.fxml │ │ ├── multiple_resources │ │ ├── MultipleResources.java │ │ ├── body_colors │ │ ├── body_colors1 │ │ ├── body_colors2 │ │ └── properties.fxml │ │ ├── resources │ │ ├── Resources.java │ │ ├── body_colors │ │ └── resources.fxml │ │ ├── root_primitive_fx_constant │ │ ├── RootPrimitiveFxConstant.java │ │ └── fxConstant.fxml │ │ ├── root_primitive_fx_factory │ │ ├── RootPrimitiveFxFactory.java │ │ └── fxFactory.fxml │ │ ├── static_property │ │ ├── StaticProperty.java │ │ ├── staticObjectProperty.fxml │ │ └── staticProperty.fxml │ │ ├── string_instance_property │ │ ├── StringInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── string_read_only_attribute_instance_property │ │ ├── StringReadOnlyAttributeInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── string_read_only_instance_property │ │ ├── StringReadOnlyInstanceProperty.java │ │ └── instanceProperty.fxml │ │ ├── two_slots_primitive │ │ ├── TwoSlotsPrimitive.java │ │ └── twoSlotsPrimitive.fxml │ │ └── two_slots_primitive_expression │ │ ├── TwoSlotsPrimitiveExpression.java │ │ └── twoSlotsPrimitiveExpression.fxml ├── micronaut │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── paullo612 │ │ │ └── mlfx │ │ │ └── compiler │ │ │ └── micronaut │ │ │ ├── CompileFXMLMicronautVisitor.java │ │ │ ├── FXMLMicronautVisitor.java │ │ │ └── package-info.java │ │ └── javadoc │ │ └── README └── pom.xml └── pom.xml /.github/workflows/maven.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/.github/workflows/maven.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/README.md -------------------------------------------------------------------------------- /api/api-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/pom.xml -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/CompileFXML.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/CompileFXML.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/CompiledFXMLLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/CompiledFXMLLoader.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/CompiledLoadException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/CompiledLoadException.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/ControllerAccessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/ControllerAccessor.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/ControllerAccessorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/ControllerAccessorFactory.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/GeneratedByMLFX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/GeneratedByMLFX.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/MLFXLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/MLFXLoader.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/ObservableListenerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/ObservableListenerHelper.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/ObservableListenerHelperImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/ObservableListenerHelperImpl.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/Result.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/Result.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/internal/MLFXLoaderDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/internal/MLFXLoaderDelegate.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/internal/impl/MLFXLoaderDelegateImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/internal/impl/MLFXLoaderDelegateImpl.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/internal/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/internal/package-info.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/io/github/paullo612/mlfx/api/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/io/github/paullo612/mlfx/api/package-info.java -------------------------------------------------------------------------------- /api/api-core/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/api-core/src/main/java/module-info.java -------------------------------------------------------------------------------- /api/internal-stub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/internal-stub/pom.xml -------------------------------------------------------------------------------- /api/internal-stub/src/main/java/module-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/internal-stub/src/main/java/module-info.java -------------------------------------------------------------------------------- /api/micronaut/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/micronaut/pom.xml -------------------------------------------------------------------------------- /api/micronaut/src/main/java/io/github/paullo612/mlfx/api/internal/impl/ControllerAccessorImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/micronaut/src/main/java/io/github/paullo612/mlfx/api/internal/impl/ControllerAccessorImpl.java -------------------------------------------------------------------------------- /api/micronaut/src/main/java/io/github/paullo612/mlfx/api/internal/impl/MLFXLoaderDelegateImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/micronaut/src/main/java/io/github/paullo612/mlfx/api/internal/impl/MLFXLoaderDelegateImpl.java -------------------------------------------------------------------------------- /api/micronaut/src/main/java/io/github/paullo612/mlfx/api/internal/impl/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/micronaut/src/main/java/io/github/paullo612/mlfx/api/internal/impl/package-info.java -------------------------------------------------------------------------------- /api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/api/pom.xml -------------------------------------------------------------------------------- /compiler/compiler-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/pom.xml -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/antlr4/io/github/paullo612/mlfx/expression/FXMLExpression.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/antlr4/io/github/paullo612/mlfx/expression/FXMLExpression.g4 -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/BindingExpressionRendererImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/BindingExpressionRendererImpl.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompileErrorException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompileErrorException.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompileFXMLVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompileFXMLVisitor.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompileTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompileTask.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompilerContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompilerContext.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompilerContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/CompilerContextImpl.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/FXMLCompiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/FXMLCompiler.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/ProcessingInstructions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/ProcessingInstructions.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/RootRenderer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/RootRenderer.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/TaskFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/TaskFactory.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/CopyFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/CopyFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/DefineFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/DefineFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ElementUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ElementUtils.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/FXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/FXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/IdentifiableFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/IdentifiableFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/IncludeFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/IncludeFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/InstanceDeclarationFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/InstanceDeclarationFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/LoadableFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/LoadableFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/PropertyValueLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/PropertyValueLoader.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ReadOnlyInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ReadOnlyInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ReadWriteInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ReadWriteInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ReferenceFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/ReferenceFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/RenderUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/RenderUtils.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/RootFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/RootFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/StaticPropertyFXMLElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/StaticPropertyFXMLElement.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/elements/package-info.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/compiler/package-info.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/AbstractNamedContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/AbstractNamedContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/AddContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/AddContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/AndContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/AndContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BinaryBoxableContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BinaryBoxableContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BindingContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BindingContext.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BindingImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BindingImpl.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BooleanContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BooleanContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BooleanLiteral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BooleanLiteral.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BooleanLiteralContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BooleanLiteralContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BoxableContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/BoxableContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/CollectionContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/CollectionContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/Continuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/Continuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ContinuationContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ContinuationContainer.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/DecimalLiteral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/DecimalLiteral.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/DecimalLiteralContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/DecimalLiteralContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/DivideContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/DivideContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/EqualToContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/EqualToContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/EqualityContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/EqualityContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ExpressionContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ExpressionContext.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ExpressionContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ExpressionContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ExpressionContinuationVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ExpressionContinuationVisitor.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/Expressions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/Expressions.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/FloatingPointLiteral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/FloatingPointLiteral.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/FloatingPointLiteralContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/FloatingPointLiteralContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/GreaterThanContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/GreaterThanContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/GreaterThanOrEqualContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/GreaterThanOrEqualContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/Literal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/Literal.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/LiteralVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/LiteralVisitor.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/LowerThanContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/LowerThanContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/LowerThanOrEqualContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/LowerThanOrEqualContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/MathContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/MathContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/MethodCallContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/MethodCallContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/MultiplyContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/MultiplyContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NegateContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NegateContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NotContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NotContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NotEqualToContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NotEqualToContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NullLiteral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NullLiteral.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NullLiteralContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NullLiteralContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NumberBoxableContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NumberBoxableContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NumberComparisonContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NumberComparisonContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NumberContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/NumberContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/OrContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/OrContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/PropertyReadContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/PropertyReadContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/RemainderContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/RemainderContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/RenderingAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/RenderingAdapter.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/SavePointRenderingAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/SavePointRenderingAdapter.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ScopeReadContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ScopeReadContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ShortCircuitContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/ShortCircuitContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/StaticBindingImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/StaticBindingImpl.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/StringLiteral.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/StringLiteral.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/StringLiteralContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/StringLiteralContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/SubtractContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/SubtractContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/TypedContinuation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/TypedContinuation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/java/io/github/paullo612/mlfx/expression/package-info.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/javadoc/README: -------------------------------------------------------------------------------- 1 | No public API inside -------------------------------------------------------------------------------- /compiler/compiler-core/src/main/version-resources/io/github/paullo612/mlfx/compiler/VersionConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/main/version-resources/io/github/paullo612/mlfx/compiler/VersionConstants.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/compiler/CompileSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/compiler/CompileSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/compiler/ComplianceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/compiler/ComplianceSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/BindingExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/BindingExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/BooleanExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/BooleanExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/CollectionExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/CollectionExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/ComparisonExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/ComparisonExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/EqualityExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/EqualityExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/ExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/ExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/LiteralExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/LiteralExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/MathExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/MathExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/MethodCallExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/MethodCallExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/PropertyReadExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/PropertyReadExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/ScopeReadExpressionSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/groovy/io/github/paullo612/mlfx/expression/ScopeReadExpressionSpec.groovy -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/BindingContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/BindingContextImpl.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/ExpressionVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/ExpressionVisitor.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/AnotherGeneric.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/AnotherGeneric.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Car.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Car.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/CoercibleIdentifiable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/CoercibleIdentifiable.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Crankpin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Crankpin.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Crankshaft.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Crankshaft.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Engine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Engine.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/EngineLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/EngineLocation.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/EngineType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/EngineType.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Flywheel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Flywheel.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/FooFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/FooFactory.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Generic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Generic.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/GenericHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/GenericHolder.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/GenericHolderBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/GenericHolderBase.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Identifiable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Identifiable.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Trunk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Trunk.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Wheel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/compiler/test/Wheel.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Expression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Expression.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/ExpressionIntroduction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/ExpressionIntroduction.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/ExpressionIntroductionDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/ExpressionIntroductionDelegate.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Numbers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Numbers.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/OverloadType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/OverloadType.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Overloaded.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Overloaded.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Properties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/Properties.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/PropertiesImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/java/io/github/paullo612/mlfx/expression/test/PropertiesImpl.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_instance_property/AttributeInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_instance_property/AttributeInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_static_property/AttributeStaticProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_static_property/AttributeStaticProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_static_property/staticProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/attribute_static_property/staticProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/bundle/Bundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/bundle/Bundle.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/bundle/bundle.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/bundle/bundle.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/bundle/bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/bundle/bundle.properties -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/coercible_id_property/CoercibleIdProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/coercible_id_property/CoercibleIdProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/coercible_id_property/idProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/coercible_id_property/idProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/collection/Collection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/collection/Collection.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/collection/collection.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/collection/collection.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property/DefaultInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property/DefaultInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property_fx_define/DefaultInstancePropertyFxDefine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property_fx_define/DefaultInstancePropertyFxDefine.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property_fx_define/fxDefine.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_instance_property_fx_define/fxDefine.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_string_instance_property/DefaultStringInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_string_instance_property/DefaultStringInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_string_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_string_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_string_instance_property/nestedInstanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/default_string_instance_property/nestedInstanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_attribute_instance_property/EmptyAttributeInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_attribute_instance_property/EmptyAttributeInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_attribute_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_attribute_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_default_string_instance_property/EmptyDefaultStringInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_default_string_instance_property/EmptyDefaultStringInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_default_string_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_default_string_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_string_read_only_instance_property/EmptyStringReadOnlyInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_string_read_only_instance_property/EmptyStringReadOnlyInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_string_read_only_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/empty_string_read_only_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/enum_fx_constant/EnumFxConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/enum_fx_constant/EnumFxConstant.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/enum_fx_constant/fxConstant.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/enum_fx_constant/fxConstant.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/expression_handlers/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/expression_handlers/Controller.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/expression_handlers/Handlers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/expression_handlers/Handlers.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/expression_handlers/handlers.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/expression_handlers/handlers.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/external_fx_controller/FxController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/external_fx_controller/FxController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/external_fx_controller/FxControllerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/external_fx_controller/FxControllerController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/external_fx_controller/fxController.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/external_fx_controller/fxController.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_controller/FxController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_controller/FxController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_controller/MyController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_controller/MyController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_controller/fxController.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_controller/fxController.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_copy/FxCopy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_copy/FxCopy.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_copy/fxCopy.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_copy/fxCopy.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_define/FxDefine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_define/FxDefine.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_define/fxDefine.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_define/fxDefine.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_factory/FxFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_factory/FxFactory.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_factory/fxFactory.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_factory/fxFactory.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/Include.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/Include.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/anotherCar.fxml_nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/anotherCar.fxml_nc -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/anotherCar.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/anotherEngine.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/anotherEngine.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/anotherEngine.properties: -------------------------------------------------------------------------------- 1 | engine.manufacturer.name=Ford -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/car.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/car.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/engine.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/engine.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/wheel.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_include/wheel.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_reference/FxReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_reference/FxReference.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_reference/fxReference.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_reference/fxReference.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_root/FxRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_root/FxRoot.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_root/FxRootRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_root/FxRootRoot.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_root/fxRoot.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_root/fxRoot.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_value/FxValue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_value/FxValue.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_value/fxValue.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/fx_value/fxValue.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property/GenericProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property/GenericProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property/genericProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property/genericProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property_expression/GenericPropertyExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property_expression/GenericPropertyExpression.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property_expression/boundGenericProperty.fxml_nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property_expression/boundGenericProperty.fxml_nc -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property_expression/genericPropertyExpression.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/generic_property_expression/genericPropertyExpression.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/handlers/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/handlers/Controller.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/handlers/Handlers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/handlers/Handlers.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/handlers/handlers.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/handlers/handlers.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/id_property/IdProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/id_property/IdProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/id_property/idProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/id_property/idProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initializable_fx_controller/FxController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initializable_fx_controller/FxController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initializable_fx_controller/MyController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initializable_fx_controller/MyController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initializable_fx_controller/fxController.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initializable_fx_controller/fxController.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initialize_fx_controller/FxController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initialize_fx_controller/FxController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initialize_fx_controller/MyController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initialize_fx_controller/MyController.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initialize_fx_controller/fxController.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/initialize_fx_controller/fxController.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/inject/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/inject/Controller.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/inject/Inject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/inject/Inject.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/inject/inject.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/inject/inject.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/InstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/InstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/readOnlyInstanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/readOnlyInstanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/readWriteInstanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/readWriteInstanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/staticReadOnlyInstanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/staticReadOnlyInstanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/staticReadOnlyInstanceProperty.fxml_nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/instance_property/staticReadOnlyInstanceProperty.fxml_nc -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_instance_properties/MultipleInstanceProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_instance_properties/MultipleInstanceProperties.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_instance_properties/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_instance_properties/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/MultipleResources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/MultipleResources.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/body_colors: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/body_colors1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/body_colors2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/properties.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/multiple_resources/properties.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/resources/Resources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/resources/Resources.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/resources/body_colors: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/resources/resources.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/resources/resources.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_constant/RootPrimitiveFxConstant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_constant/RootPrimitiveFxConstant.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_constant/fxConstant.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_constant/fxConstant.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_factory/RootPrimitiveFxFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_factory/RootPrimitiveFxFactory.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_factory/fxFactory.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/root_primitive_fx_factory/fxFactory.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/static_property/StaticProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/static_property/StaticProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/static_property/staticObjectProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/static_property/staticObjectProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/static_property/staticProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/static_property/staticProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_instance_property/StringInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_instance_property/StringInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_attribute_instance_property/StringReadOnlyAttributeInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_attribute_instance_property/StringReadOnlyAttributeInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_attribute_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_attribute_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_instance_property/StringReadOnlyInstanceProperty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_instance_property/StringReadOnlyInstanceProperty.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_instance_property/instanceProperty.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/string_read_only_instance_property/instanceProperty.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive/TwoSlotsPrimitive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive/TwoSlotsPrimitive.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive/twoSlotsPrimitive.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive/twoSlotsPrimitive.fxml -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive_expression/TwoSlotsPrimitiveExpression.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive_expression/TwoSlotsPrimitiveExpression.java -------------------------------------------------------------------------------- /compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive_expression/twoSlotsPrimitiveExpression.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/compiler-core/src/test/resources/io/github/paullo612/mlfx/compiler/compliance/two_slots_primitive_expression/twoSlotsPrimitiveExpression.fxml -------------------------------------------------------------------------------- /compiler/micronaut/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/micronaut/pom.xml -------------------------------------------------------------------------------- /compiler/micronaut/src/main/java/io/github/paullo612/mlfx/compiler/micronaut/CompileFXMLMicronautVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/micronaut/src/main/java/io/github/paullo612/mlfx/compiler/micronaut/CompileFXMLMicronautVisitor.java -------------------------------------------------------------------------------- /compiler/micronaut/src/main/java/io/github/paullo612/mlfx/compiler/micronaut/FXMLMicronautVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/micronaut/src/main/java/io/github/paullo612/mlfx/compiler/micronaut/FXMLMicronautVisitor.java -------------------------------------------------------------------------------- /compiler/micronaut/src/main/java/io/github/paullo612/mlfx/compiler/micronaut/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/micronaut/src/main/java/io/github/paullo612/mlfx/compiler/micronaut/package-info.java -------------------------------------------------------------------------------- /compiler/micronaut/src/main/javadoc/README: -------------------------------------------------------------------------------- 1 | No public API inside -------------------------------------------------------------------------------- /compiler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/compiler/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paullo612/mlfx/HEAD/pom.xml --------------------------------------------------------------------------------