| Package | Description |
|---|---|
| com.google.javascript.jscomp.parsing |
Provides utilities to help with parsing JSDoc annotations and performing AST
transformations.
|
| com.google.javascript.jscomp.parsing.parser | |
| com.google.javascript.jscomp.parsing.parser.trees |
| Modifier and Type | Method and Description |
|---|---|
(package private) Node |
IRFactory.TransformDispatcher.processBlock(BlockTree blockNode) |
| Modifier and Type | Method and Description |
|---|---|
private BlockTree |
Parser.parseBlock() |
private BlockTree |
Parser.parseFunctionBody() |
| Modifier and Type | Field and Description |
|---|---|
BlockTree |
ComputedPropertyGetterTree.body |
BlockTree |
ComputedPropertySetterTree.body |
BlockTree |
GetAccessorTree.body |
BlockTree |
SetAccessorTree.body |
| Modifier and Type | Method and Description |
|---|---|
BlockTree |
ParseTree.asBlock() |
| Constructor and Description |
|---|
ComputedPropertyGetterTree(SourceRange location,
ParseTree property,
boolean isStatic,
TokenType access,
ParseTree returnType,
BlockTree body) |
ComputedPropertySetterTree(SourceRange location,
ParseTree property,
boolean isStatic,
TokenType access,
IdentifierToken parameter,
ParseTree type,
BlockTree body) |
GetAccessorTree(SourceRange location,
Token propertyName,
boolean isStatic,
ParseTree returnType,
BlockTree body) |
SetAccessorTree(SourceRange location,
Token propertyName,
boolean isStatic,
IdentifierToken parameter,
ParseTree type,
BlockTree body) |