Uses of Interface
org.sonar.javascript.model.IdentifierTree

Packages that use IdentifierTree
org.sonar.javascript.model Provides interfaces to represent JavaScript source code as abstract syntax trees (AST). 
 

Uses of IdentifierTree in org.sonar.javascript.model
 

Classes in org.sonar.javascript.model that implement IdentifierTree
static class TreeImpl.IdentifierTreeImpl
           
 

Methods in org.sonar.javascript.model that return IdentifierTree
 IdentifierTree VariableDeclarationTree.identifier()
           
 IdentifierTree TreeImpl.PropertyAccessTreeImpl.identifier()
           
 IdentifierTree TreeImpl.VariableDeclarationTreeImpl.identifier()
           
 IdentifierTree TreeImpl.CatchBlockTreeImpl.identifier()
           
 IdentifierTree TreeImpl.FunctionTreeImpl.identifier()
           
 IdentifierTree PropertyAccessTree.identifier()
           
 IdentifierTree FunctionTree.identifier()
           
 IdentifierTree CatchBlockTree.identifier()
           
 IdentifierTree TreeImpl.BreakStatementTreeImpl.label()
           
 IdentifierTree TreeImpl.ContinueStatementTreeImpl.label()
           
 IdentifierTree TreeImpl.LabelledStatementTreeImpl.label()
           
 IdentifierTree LabelledStatementTree.label()
           
 IdentifierTree ContinueStatementTree.label()
           
 IdentifierTree BreakStatementTree.label()
           
 

Methods in org.sonar.javascript.model that return types with arguments of type IdentifierTree
 List<IdentifierTree> TreeImpl.FunctionTreeImpl.formalParameterList()
           
 List<IdentifierTree> FunctionTree.formalParameterList()
           
 List<IdentifierTree> TreeImpl.PropertyAssignmentTreeImpl.propertySetParameters()
           
 List<IdentifierTree> PropertyAssignmentTree.propertySetParameters()
           
 

Constructors in org.sonar.javascript.model with parameters of type IdentifierTree
TreeImpl.BreakStatementTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree label)
           
TreeImpl.CatchBlockTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree identifier, BlockTree block)
           
TreeImpl.ContinueStatementTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree label)
           
TreeImpl.FunctionTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree identifier, List<IdentifierTree> formalParameterList, List<? extends SourceElementTree> body)
           
TreeImpl.LabelledStatementTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree label, StatementTree statement)
           
TreeImpl.PropertyAccessTreeImpl(com.sonar.sslr.api.AstNode astNode, ExpressionTree expression, IdentifierTree identifier)
           
TreeImpl.VariableDeclarationTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree identifier, ExpressionTree initialiser)
           
 

Constructor parameters in org.sonar.javascript.model with type arguments of type IdentifierTree
TreeImpl.FunctionTreeImpl(com.sonar.sslr.api.AstNode astNode, IdentifierTree identifier, List<IdentifierTree> formalParameterList, List<? extends SourceElementTree> body)
           
TreeImpl.PropertyAssignmentTreeImpl(com.sonar.sslr.api.AstNode astNode, Tree propertyName, ExpressionTree expression, List<IdentifierTree> propertySetParameters, List<? extends SourceElementTree> body)
           
 



Copyright © 2011-2014 SonarSource and Eriks Nukis. All Rights Reserved.