Package jminusminus
Class JThisConstruction
java.lang.Object
jminusminus.JAST
jminusminus.JStatement
jminusminus.JExpression
jminusminus.JThisConstruction
The AST node for a this(...) constructor.
-
Field Summary
Fields inherited from class jminusminus.JExpression
isStatementExpression, type
Fields inherited from class jminusminus.JAST
compilationUnit, line
-
Constructor Summary
ModifierConstructorDescriptionprotected
JThisConstruction
(int line, ArrayList<JExpression> arguments) Constructs the AST node for a this(...) constructor. -
Method Summary
Modifier and TypeMethodDescriptionAnalyzes and returns a JExpression.void
Performs code generation for this AST.void
Marks this(...) as being properly placed, ie, as the first statement in its body.void
toJSON
(JSONElement json) Stores information about this AST in JSON format.Methods inherited from class jminusminus.JExpression
codegen, isStatementExpression, type
Methods inherited from class jminusminus.JAST
line, partialCodegen, unescape
-
Constructor Details
-
JThisConstruction
Constructs the AST node for a this(...) constructor.- Parameters:
line
- line in which the constructor occurs in the source file.arguments
- the constructor's arguments.
-
-
Method Details
-
markProperUseOfConstructor
public void markProperUseOfConstructor()Marks this(...) as being properly placed, ie, as the first statement in its body. -
analyze
Analyzes and returns a JExpression.- Specified by:
analyze
in classJExpression
- Parameters:
context
- context in which names are resolved.- Returns:
- the analyzed (and possibly rewritten) AST subtree.
-
codegen
Performs code generation for this AST. -
toJSON
Stores information about this AST in JSON format.
-