Uses of Class
org.mozilla.javascript.ast.Label
-
Packages that use Label Package Description org.mozilla.javascript.ast -
-
Uses of Label in org.mozilla.javascript.ast
Methods in org.mozilla.javascript.ast that return Label Modifier and Type Method Description Label
LabeledStatement. getFirstLabel()
Label
LabeledStatement. getLabelByName(java.lang.String name)
Returns label with specified name from the label list for this labeled statement.Methods in org.mozilla.javascript.ast that return types with arguments of type Label Modifier and Type Method Description java.util.List<Label>
LabeledStatement. getLabels()
Returns label listMethods in org.mozilla.javascript.ast with parameters of type Label Modifier and Type Method Description void
LabeledStatement. addLabel(Label label)
Adds a label and sets its parent to this node.Method parameters in org.mozilla.javascript.ast with type arguments of type Label Modifier and Type Method Description void
LabeledStatement. setLabels(java.util.List<Label> labels)
Sets label list, setting the parent of each label in the list.
-