Package | Description |
---|---|
com.google.javascript.jscomp.parsing.parser | |
com.google.javascript.jscomp.parsing.parser.codegeneration | |
com.google.javascript.jscomp.parsing.parser.trees |
Modifier and Type | Method and Description |
---|---|
protected void |
ParseTreeValidator.visit(BlockTree tree) |
protected void |
ParseTreeVisitor.visit(BlockTree tree) |
Modifier and Type | Method and Description |
---|---|
static BlockTree |
ParseTreeFactory.createBlock(com.google.common.collect.ImmutableList<ParseTree> statements) |
static BlockTree |
ParseTreeFactory.createBlock(ParseTree... statements) |
static BlockTree |
ParseTreeFactory.createEmptyBlock() |
Modifier and Type | Method and Description |
---|---|
static FunctionDeclarationTree |
ParseTreeFactory.createFunctionDeclaration(IdentifierToken name,
FormalParameterListTree formalParameterList,
BlockTree functionBody) |
static FunctionDeclarationTree |
ParseTreeFactory.createFunctionDeclaration(String name,
FormalParameterListTree formalParameterList,
BlockTree functionBody) |
static FunctionDeclarationTree |
ParseTreeFactory.createFunctionExpression(FormalParameterListTree formalParameterList,
BlockTree functionBody) |
static FunctionDeclarationTree |
ParseTreeFactory.createFunctionExpressionFormals(com.google.common.collect.ImmutableList<String> formalParameters,
BlockTree functionBody) |
static GetAccessorTree |
ParseTreeFactory.createGetAccessor(String propertyName,
boolean isStatic,
BlockTree body) |
static GetAccessorTree |
ParseTreeFactory.createGetAccessor(Token propertyName,
boolean isStatic,
BlockTree body) |
static ParseTree |
ParseTreeFactory.createScopedBlock(BlockTree block) |
static CallExpressionTree |
ParseTreeFactory.createScopedExpression(BlockTree block) |
static SetAccessorTree |
ParseTreeFactory.createSetAccessor(String propertyName,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
static SetAccessorTree |
ParseTreeFactory.createSetAccessor(String propertyName,
boolean isStatic,
String parameter,
BlockTree body) |
static SetAccessorTree |
ParseTreeFactory.createSetAccessor(Token propertyName,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
protected ParseTree |
ParseTreeTransformer.transform(BlockTree tree) |
protected void |
ParseTreeWriter.visit(BlockTree tree) |
Modifier and Type | Field and Description |
---|---|
BlockTree |
SetAccessorTree.body |
BlockTree |
GetAccessorTree.body |
Modifier and Type | Method and Description |
---|---|
BlockTree |
ParseTree.asBlock() |
Constructor and Description |
---|
GetAccessorTree(SourceRange location,
Token propertyName,
boolean isStatic,
BlockTree body) |
SetAccessorTree(SourceRange location,
Token propertyName,
boolean isStatic,
IdentifierToken parameter,
BlockTree body) |
Copyright © 2009-2014 Google. All Rights Reserved.