Uses of Class
org.mozilla.javascript.ast.Name
-
Packages that use Name Package Description org.mozilla.javascript org.mozilla.javascript.ast -
-
Uses of Name in org.mozilla.javascript
Methods in org.mozilla.javascript that return Name Modifier and Type Method Description private Name
Parser. createNameNode()
private Name
Parser. createNameNode(boolean checkActivation, int token)
Create aName
node using the token info from the last scanned name.Methods in org.mozilla.javascript with parameters of type Name Modifier and Type Method Description private Node
IRFactory. transformName(Name node)
private XmlElemRef
Parser. xmlElemRef(int atPos, Name namespace, int colonPos)
Parse the [expr] portion of an xml element reference, e.g. -
Uses of Name in org.mozilla.javascript.ast
Fields in org.mozilla.javascript.ast declared as Name Modifier and Type Field Description private Name
BreakStatement. breakLabel
private Name
FunctionNode. functionName
private Name
ContinueStatement. label
protected Name
XmlRef. namespace
private Name
XmlPropRef. propName
private Name
CatchClause. varName
Methods in org.mozilla.javascript.ast that return Name Modifier and Type Method Description Name
BreakStatement. getBreakLabel()
Returns the intended label of this break statementName
FunctionNode. getFunctionName()
Returns function nameName
ContinueStatement. getLabel()
Returns the intended label of this continue statementName
XmlRef. getNamespace()
Return the namespace.Name
PropertyGet. getProperty()
Returns the property being accessed.Name
XmlPropRef. getPropName()
Returns property name.Name
CatchClause. getVarName()
Returns catch variable nodeMethods in org.mozilla.javascript.ast with parameters of type Name Modifier and Type Method Description void
BreakStatement. setBreakLabel(Name label)
Sets the intended label of this break statement, e.g.void
FunctionNode. setFunctionName(Name name)
Sets function name, and sets its parent to this node.void
ContinueStatement. setLabel(Name label)
Sets the intended label of this continue statement.void
XmlRef. setNamespace(Name namespace)
Sets namespace, and sets its parent to this node.void
PropertyGet. setProperty(Name property)
Sets the property being accessed, and sets its parent to this node.void
XmlPropRef. setPropName(Name propName)
Sets property name, and sets its parent to this node.void
CatchClause. setVarName(Name varName)
Sets catch variable node, and sets its parent to this node.Constructors in org.mozilla.javascript.ast with parameters of type Name Constructor Description ContinueStatement(int pos, int len, Name label)
ContinueStatement(int pos, Name label)
ContinueStatement(Name label)
FunctionNode(int pos, Name name)
PropertyGet(int pos, int len, AstNode target, Name property)
PropertyGet(AstNode target, Name property)
Constructor.PropertyGet(AstNode target, Name property, int dotPosition)
-