static CatchTree |
ParseTreeFactory.createCatch(IdentifierToken exceptionName,
ParseTree catchBody) |
static ClassDeclarationTree |
ParseTreeFactory.createClassDeclaration(IdentifierToken name,
ParseTree superClass,
com.google.common.collect.ImmutableList<ParseTree> elements) |
static ClassDeclarationTree |
ParseTreeFactory.createClassExpression(IdentifierToken name,
ParseTree superClass,
com.google.common.collect.ImmutableList<ParseTree> elements) |
static FunctionDeclarationTree |
ParseTreeFactory.createFunctionDeclaration(IdentifierToken name,
FormalParameterListTree formalParameterList,
BlockTree functionBody) |
static IdentifierExpressionTree |
ParseTreeFactory.createIdentifierExpression(IdentifierToken identifier) |
static LabelledStatementTree |
ParseTreeFactory.createLabelledStatement(IdentifierToken name,
ParseTree statement) |
static MemberExpressionTree |
ParseTreeFactory.createMemberExpression(ParseTree operand,
IdentifierToken memberName) |
static ObjectPatternFieldTree |
ParseTreeFactory.createObjectPatternField(IdentifierToken identifier,
ParseTree element) |
static FormalParameterListTree |
ParseTreeFactory.createParameterList(IdentifierToken parameter) |
static com.google.common.collect.ImmutableList<String> |
ParseTreeFactory.createParameters(IdentifierToken parameter) |
static RestParameterTree |
ParseTreeFactory.createRestParameter(IdentifierToken identifier) |
static SetAccessorTree |
ParseTreeFactory.createSetAccessor(String propertyName,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
static SetAccessorTree |
ParseTreeFactory.createSetAccessor(Token propertyName,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
static MemberExpressionTree |
ParseTreeFactory.createThisExpression(IdentifierToken memberName) |
static VariableDeclarationTree |
ParseTreeFactory.createVariableDeclaration(IdentifierToken name,
ParseTree initializer) |
static VariableDeclarationListTree |
ParseTreeFactory.createVariableDeclarationList(TokenType binding,
IdentifierToken identifier,
ParseTree initializer) |
static VariableStatementTree |
ParseTreeFactory.createVariableStatement(TokenType binding,
IdentifierToken identifier,
ParseTree initializer) |