Package | Description |
---|---|
com.google.javascript.rhino |
The core AST from Rhino.
|
Modifier and Type | Class and Description |
---|---|
private static class |
Node.AbstractPropListItem |
private static class |
Node.IntPropListItem |
private static class |
Node.ObjectPropListItem |
Modifier and Type | Field and Description |
---|---|
private Node.PropListItem |
Node.AbstractPropListItem.next |
private Node.PropListItem |
Node.propListHead
Linked list of properties.
|
Modifier and Type | Method and Description |
---|---|
Node.PropListItem |
Node.PropListItem.chain(Node.PropListItem next) |
abstract Node.PropListItem |
Node.AbstractPropListItem.chain(Node.PropListItem next) |
Node.PropListItem |
Node.ObjectPropListItem.chain(Node.PropListItem next) |
Node.PropListItem |
Node.IntPropListItem.chain(Node.PropListItem next) |
(package private) Node.PropListItem |
Node.createProp(int propType,
int value,
Node.PropListItem next) |
(package private) Node.PropListItem |
Node.createProp(int propType,
java.lang.Object value,
Node.PropListItem next) |
Node.PropListItem |
Node.PropListItem.getNext() |
Node.PropListItem |
Node.AbstractPropListItem.getNext() |
(package private) Node.PropListItem |
Node.getPropListHeadForTesting() |
(package private) Node.PropListItem |
Node.lookupProperty(int propType) |
private Node.PropListItem |
Node.removeProp(Node.PropListItem item,
int propType) |
Modifier and Type | Method and Description |
---|---|
Node.PropListItem |
Node.PropListItem.chain(Node.PropListItem next) |
abstract Node.PropListItem |
Node.AbstractPropListItem.chain(Node.PropListItem next) |
Node.PropListItem |
Node.ObjectPropListItem.chain(Node.PropListItem next) |
Node.PropListItem |
Node.IntPropListItem.chain(Node.PropListItem next) |
(package private) Node.PropListItem |
Node.createProp(int propType,
int value,
Node.PropListItem next) |
(package private) Node.PropListItem |
Node.createProp(int propType,
java.lang.Object value,
Node.PropListItem next) |
private Node.PropListItem |
Node.removeProp(Node.PropListItem item,
int propType) |
(package private) void |
Node.setPropListHead(Node.PropListItem propListHead) |
Constructor and Description |
---|
AbstractPropListItem(int propType,
Node.PropListItem next) |
IntPropListItem(int propType,
int intValue,
Node.PropListItem next) |
ObjectPropListItem(int propType,
java.lang.Object objectValue,
Node.PropListItem next) |