Uses of Class
eu.bandm.tools.lljava.absy.LLJava.CodePoint
Package
Description
Abstract Syntax of LLJava, representing the byte code instructions, the objects which
contain byte code, and the attributes specific to byte code classes.
-
Uses of LLJava.CodePoint in eu.bandm.tools.lljava.absy
Modifier and TypeClassDescriptionstatic class
Syntactic expression denoting a labeled code point by name.static class
Syntactic expression denoting the entry point of a block defined inline.Modifier and TypeFieldDescriptionprotected LLJava.CodePoint
LLJava.Case.body
Generated by umod; model author's documentation MISSING.protected LLJava.CodePoint
LLJava.Handler.body
Generated by umod; model author's documentation MISSING.protected LLJava.CodePoint
LLJava.If.body
Generated by umod; model author's documentation MISSING.Modifier and TypeMethodDescriptionLLJava.CodePoint.doclone()
Clones this object.LLJava.Case.get_body()
Generated by umod; model author's documentation MISSING.LLJava.Handler.get_body()
Generated by umod; model author's documentation MISSING.LLJava.If.get_body()
Generated by umod; model author's documentation MISSING.Copies values of all common fields from the argument.Modifier and TypeMethodDescriptionstatic Pattern<LLJava.CodePoint>
LLJava.__Patterns.term_CodePoint
(Pattern<? super LLJava.Node> superpattern) Modifier and TypeMethodDescriptionprotected void
LLJava.__Formatter.action
(LLJava.CodePoint el) protected void
LLJava.MATCH_ONLY_00.action
(LLJava.CodePoint e0) protected void
LLJava.MultiVisitor.action
(LLJava.CodePoint e0) protected void
LLJava.Visitor.action
(LLJava.CodePoint e0) protected void
LLJava.MultiVisitor.descend
(LLJava.CodePoint e0) void
LLJava.MATCH_ONLY_00.match
(LLJava.CodePoint e0) protected void
LLJava.MultiVisitor.post
(LLJava.CodePoint e0) protected void
LLJava.MultiVisitor.pre
(LLJava.CodePoint e0) boolean
LLJava.Case.set_body
(LLJava.CodePoint val) Generated by umod; model author's documentation MISSING.boolean
LLJava.Handler.set_body
(LLJava.CodePoint val) Generated by umod; model author's documentation MISSING.boolean
LLJava.If.set_body
(LLJava.CodePoint val) Generated by umod; model author's documentation MISSING.protected Format
LLJava.__Formatter.toFormat
(LLJava.CodePoint el) (package private) LLJava.GotoPoint
CodeSerializer.unline
(LLJava.CodePoint i) Modifier and TypeMethodDescriptionLLJava.__Patterns.cast_CodePoint
(Pattern<? super LLJava.CodePoint> p) static Pattern<LLJava.Case>
LLJava.Case.get_body
(Pattern<? super LLJava.CodePoint> p) Lifts a pattern which matches the field value to one which matches this whole object.static Pattern<LLJava.Handler>
LLJava.Handler.get_body
(Pattern<? super LLJava.CodePoint> p) Lifts a pattern which matches the field value to one which matches this whole object.LLJava.If.get_body
(Pattern<? super LLJava.CodePoint> p) Lifts a pattern which matches the field value to one which matches this whole object.static Pattern<LLJava.GotoPoint>
LLJava.__Patterns.term_GotoPoint
(Pattern<? super LLJava.CodePoint> superpattern, Pattern<? super LLJava.Name> p_id, Pattern<? super LLJava.Block> p_target) static Pattern<LLJava.InlinePoint>
LLJava.__Patterns.term_InlinePoint
(Pattern<? super LLJava.CodePoint> superpattern, Pattern<? super LLJava.Block> p_body) ModifierConstructorDescriptionCase
(LLJava.CodePoint body) Constructor generated according to specification #1
Constructor defined according to directive "C 1/..".Case
(CheckedSet<Integer> labels, boolean isDefault, LLJava.CodePoint body) Constructor generated according to specification #0
Constructor defined according to directive "C 0/..".Handler
(LLJava.ClassReference type, LLJava.CodePoint body) Constructor generated according to specification #0
Constructor defined according to directive "C 0/..".Handler
(LLJava.CodePoint body) Synthetic minimal constructor provided by the umod compiler.If
(boolean neg, LLJava.Condition condition, LLJava.CodePoint body) Constructor generated according to specification #0
Constructor defined according to directive "C 0/..".If
(LLJava.Condition condition, LLJava.CodePoint body) Constructor generated according to specification #1
Constructor defined according to directive "C 1/..". -
Uses of LLJava.CodePoint in eu.bandm.tools.lljava.parser
Modifier and TypeMethodDescriptionLLJavaGrammar.codeReference
(Expression<SourceId, LLJavaLexer.TokenType, LLJava.Block> block) Modifier and TypeMethodDescriptionprotected abstract LLJava.Handler
LLJavaGrammar.catchHandler
(Reducer.Context<SourceId> context, List<LLJava.Label> prefixLabels, Optional<LLJava.ClassReference> type, List<LLJava.Label> infixLabels, LLJava.CodePoint body) protected LLJava.Handler
LLJavaParser.catchHandler
(Reducer.Context<SourceId> context, List<LLJava.Label> prefixLabels, Optional<LLJava.ClassReference> type, List<LLJava.Label> infixLabels, LLJava.CodePoint body) protected abstract LLJava.If
LLJavaGrammar.ifInstruction
(Reducer.Context<SourceId> context, boolean negative, LLJava.Condition condition, LLJava.CodePoint target) protected LLJava.If
LLJavaParser.ifInstruction
(Reducer.Context<SourceId> context, boolean negative, LLJava.Condition condition, LLJava.CodePoint target) protected abstract LLJava.Case
LLJavaGrammar.switchCase
(Reducer.Context<SourceId> context, List<Optional<LLJava.IntLiteral>> labels, LLJava.CodePoint target) protected LLJava.Case
LLJavaParser.switchCase
(Reducer.Context<SourceId> context, List<Optional<LLJava.IntLiteral>> labels, LLJava.CodePoint target)