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 |
---|---|
private void |
IRFactory.TransformDispatcher.maybeProcessGenerics(Node n,
GenericTypeListTree generics) |
(package private) Node |
IRFactory.TransformDispatcher.processGenericTypeList(GenericTypeListTree tree) |
Modifier and Type | Method and Description |
---|---|
private GenericTypeListTree |
Parser.maybeParseGenericTypes() |
Modifier and Type | Method and Description |
---|---|
private ParseTree |
Parser.parseArrowFunctionTail(SourcePosition start,
GenericTypeListTree generics,
FormalParameterListTree formalParameterList,
Parser.Expression expressionIn) |
Modifier and Type | Field and Description |
---|---|
GenericTypeListTree |
CallSignatureTree.generics |
GenericTypeListTree |
FunctionDeclarationTree.generics |
GenericTypeListTree |
ClassDeclarationTree.generics |
GenericTypeListTree |
InterfaceDeclarationTree.generics |
Modifier and Type | Method and Description |
---|---|
GenericTypeListTree |
ParseTree.asGenericTypeList() |
Constructor and Description |
---|
CallSignatureTree(SourceRange location,
boolean isNew,
GenericTypeListTree generics,
FormalParameterListTree formalParameterList,
ParseTree returnType) |
ClassDeclarationTree(SourceRange location,
IdentifierToken name,
GenericTypeListTree generics,
ParseTree superClass,
com.google.common.collect.ImmutableList<ParseTree> interfaces,
com.google.common.collect.ImmutableList<ParseTree> elements) |
FunctionDeclarationTree(SourceRange location,
IdentifierToken name,
GenericTypeListTree generics,
boolean isStatic,
boolean isGenerator,
boolean isOptional,
TokenType access,
FunctionDeclarationTree.Kind kind,
FormalParameterListTree formalParameterList,
ParseTree returnType,
ParseTree functionBody) |
InterfaceDeclarationTree(SourceRange location,
IdentifierToken name,
GenericTypeListTree generics,
com.google.common.collect.ImmutableList<ParseTree> superInterfaces,
com.google.common.collect.ImmutableList<ParseTree> elements) |