Uses of Class
net.hydromatic.morel.ast.Core.Literal
-
Packages that use Core.Literal Package Description net.hydromatic.morel.ast Abstract syntax tree. -
-
Uses of Core.Literal in net.hydromatic.morel.ast
Fields in net.hydromatic.morel.ast declared as Core.Literal Modifier and Type Field Description private Core.LiteralCoreBuilder. falseLiteralprivate Core.LiteralCoreBuilder. trueLiteralMethods in net.hydromatic.morel.ast that return Core.Literal Modifier and Type Method Description Core.LiteralCoreBuilder. boolLiteral(boolean b)Creates abooleanliteral.private static Core.LiteralCoreBuilder. boolLiteral_(boolean b)Used only during initialization.Core.LiteralCoreBuilder. charLiteral(char c)Creates acharliteral.Core.LiteralCoreBuilder. functionLiteral(TypeSystem typeSystem, BuiltIn builtIn)Creates a function literal.Core.LiteralCoreBuilder. intLiteral(BigDecimal value)Creates anintliteral.Core.LiteralCoreBuilder. literal(PrimitiveType type, Object value)Creates a literal.Core.LiteralCoreBuilder. realLiteral(Float value)Creates afloatliteral with a non-normal value.Core.LiteralCoreBuilder. realLiteral(BigDecimal value)Creates afloatliteral.Core.LiteralCoreBuilder. stringLiteral(String value)Creates a string literal.Core.LiteralCoreBuilder. unitLiteral()Creates a unit literal.Core.LiteralCoreBuilder. valueLiteral(Core.Exp exp, Object value)Creates a value literal.Methods in net.hydromatic.morel.ast with parameters of type Core.Literal Modifier and Type Method Description protected Core.ExpShuttle. visit(Core.Literal literal)protected voidVisitor. visit(Core.Literal literal)
-