| Package | Description |
|---|---|
| org.sonar.javascript.parser | |
| org.sonar.javascript.tree.impl.declaration | |
| org.sonar.javascript.tree.impl.expression | |
| org.sonar.javascript.tree.impl.statement |
| Modifier and Type | Method and Description |
|---|---|
BlockTreeImpl |
JavaScriptGrammar.BLOCK() |
BlockTreeImpl |
TreeFactory.newBlock(InternalSyntaxToken openingCurlyBrace,
com.sonar.sslr.api.typed.Optional<List<StatementTree>> statements,
InternalSyntaxToken closingCurlyBrace) |
| Modifier and Type | Method and Description |
|---|---|
BlockTreeImpl |
AccessorMethodDeclarationTreeImpl.body() |
BlockTreeImpl |
GeneratorMethodDeclarationTreeImpl.body() |
BlockTreeImpl |
MethodDeclarationTreeImpl.body() |
| Constructor and Description |
|---|
AccessorMethodDeclarationTreeImpl(InternalSyntaxToken staticToken,
InternalSyntaxToken accessorToken,
ExpressionTree name,
ParameterListTreeImpl parameters,
BlockTreeImpl body) |
FunctionDeclarationTreeImpl(InternalSyntaxToken functionKeyword,
IdentifierTreeImpl name,
ParameterListTreeImpl parameters,
BlockTreeImpl body) |
FunctionDeclarationTreeImpl(InternalSyntaxToken functionKeyword,
InternalSyntaxToken starToken,
IdentifierTreeImpl name,
ParameterListTreeImpl parameters,
BlockTreeImpl body) |
GeneratorMethodDeclarationTreeImpl(InternalSyntaxToken staticToken,
InternalSyntaxToken starToken,
ExpressionTree name,
ParameterListTreeImpl parameters,
BlockTreeImpl body) |
MethodDeclarationTreeImpl(InternalSyntaxToken staticToken,
ExpressionTree name,
ParameterListTreeImpl parameters,
BlockTreeImpl body) |
| Modifier and Type | Method and Description |
|---|---|
BlockTreeImpl |
FunctionExpressionTreeImpl.body() |
| Constructor and Description |
|---|
FunctionExpressionTreeImpl(Tree.Kind kind,
InternalSyntaxToken functionKeyword,
IdentifierTreeImpl name,
ParameterListTreeImpl parameters,
BlockTreeImpl body)
Constructor for named function expression and function declaration
|
FunctionExpressionTreeImpl(Tree.Kind kind,
InternalSyntaxToken functionKeyword,
InternalSyntaxToken star,
IdentifierTreeImpl name,
ParameterListTreeImpl parameters,
BlockTreeImpl body)
Constructor for named generator expression and generator declaration
|
FunctionExpressionTreeImpl(Tree.Kind kind,
InternalSyntaxToken functionKeyword,
InternalSyntaxToken star,
ParameterListTreeImpl parameters,
BlockTreeImpl body)
Constructor for NOT named generator expression
|
FunctionExpressionTreeImpl(Tree.Kind kind,
InternalSyntaxToken functionKeyword,
ParameterListTreeImpl parameters,
BlockTreeImpl body)
Constructor for NOT named function expression
|
| Modifier and Type | Method and Description |
|---|---|
TryStatementTreeImpl |
TryStatementTreeImpl.complete(InternalSyntaxToken tryKeyword,
BlockTreeImpl block) |
| Constructor and Description |
|---|
CatchBlockTreeImpl(InternalSyntaxToken catchKeyword,
InternalSyntaxToken openParenthesis,
BindingElementTree parameter,
InternalSyntaxToken closeParenthesis,
BlockTreeImpl block) |
TryStatementTreeImpl(InternalSyntaxToken finallyKeyword,
BlockTreeImpl finallyBlock) |
Copyright © 2011–2015 SonarSource and Eriks Nukis. All rights reserved.