Uses of Class
org.htmlunit.corejs.javascript.ast.Name
-
Packages that use Name Package Description org.htmlunit.corejs.javascript org.htmlunit.corejs.javascript.ast -
-
Uses of Name in org.htmlunit.corejs.javascript
Methods in org.htmlunit.corejs.javascript that return Name Modifier and Type Method Description private NameParser. createNameNode()private NameParser. createNameNode(boolean checkActivation, int token)Create aNamenode using the token info from the last scanned name.Methods in org.htmlunit.corejs.javascript with parameters of type Name Modifier and Type Method Description private NodeIRFactory. transformName(Name node)private XmlElemRefParser. xmlElemRef(int atPos, Name namespace, int colonPos)Parse the [expr] portion of an xml element reference, e.g. -
Uses of Name in org.htmlunit.corejs.javascript.ast
Fields in org.htmlunit.corejs.javascript.ast declared as Name Modifier and Type Field Description private NameBreakStatement. breakLabelprivate NameFunctionNode. functionNameprivate NameContinueStatement. labelprotected NameXmlRef. namespaceprivate NameXmlPropRef. propNameprivate NameCatchClause. varNameMethods in org.htmlunit.corejs.javascript.ast that return Name Modifier and Type Method Description NameBreakStatement. getBreakLabel()Returns the intended label of this break statementNameFunctionNode. getFunctionName()Returns function nameNameContinueStatement. getLabel()Returns the intended label of this continue statementNameXmlRef. getNamespace()Return the namespace.NamePropertyGet. getProperty()Returns the property being accessed.NameXmlPropRef. getPropName()Returns property name.NameCatchClause. getVarName()Returns catch variable nodeMethods in org.htmlunit.corejs.javascript.ast with parameters of type Name Modifier and Type Method Description voidBreakStatement. setBreakLabel(Name label)Sets the intended label of this break statement, e.g.voidFunctionNode. setFunctionName(Name name)Sets function name, and sets its parent to this node.voidContinueStatement. setLabel(Name label)Sets the intended label of this continue statement.voidXmlRef. setNamespace(Name namespace)Sets namespace, and sets its parent to this node.voidPropertyGet. setProperty(Name property)Sets the property being accessed, and sets its parent to this node.voidXmlPropRef. setPropName(Name propName)Sets property name, and sets its parent to this node.voidCatchClause. setVarName(Name varName)Sets catch variable node, and sets its parent to this node.Constructors in org.htmlunit.corejs.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)
-