Package | Description |
---|---|
com.google.gwt.dev.js.rhino |
Modifier and Type | Method and Description |
---|---|
Node |
Node.cloneNode() |
Node |
Node.cloneTree() |
Node |
Node.getChildBefore(Node child) |
Node |
Node.getFirstChild() |
Node |
Node.getLastChild() |
Node |
Node.getLastSibling() |
Node |
Node.getNext() |
static Node |
Node.newNumber(double number) |
static Node |
Node.newString(int type,
String str) |
static Node |
Node.newString(String str) |
Modifier and Type | Method and Description |
---|---|
void |
Node.addChildAfter(Node newChild,
Node node)
Add 'child' after 'node'.
|
void |
Node.addChildBefore(Node newChild,
Node node)
Add 'child' before 'node'.
|
void |
Node.addChildrenToBack(Node children) |
void |
Node.addChildrenToFront(Node children) |
void |
Node.addChildToBack(Node child) |
void |
Node.addChildToFront(Node child) |
String |
Node.checkTreeEquals(Node node2)
Checks if the subtree under this node is the same as another subtree.
|
Object |
IRFactory.createAssignment(int nodeOp,
Node left,
Node right,
Class convert,
boolean postfix) |
Node |
Node.getChildBefore(Node child) |
static boolean |
IRFactory.hasSideEffects(Node exprTree) |
void |
Node.removeChild(Node child) |
void |
Node.replaceChild(Node child,
Node newChild) |
void |
Node.replaceChildAfter(Node prevChild,
Node newChild) |
Constructor and Description |
---|
Node(int nodeType,
Node child) |
Node(int nodeType,
Node[] children) |
Node(int nodeType,
Node child,
int value) |
Node(int nodeType,
Node left,
Node right) |
Node(int nodeType,
Node left,
Node right,
int value) |
Node(int nodeType,
Node left,
Node mid,
Node right) |
Node(int nodeType,
Node left,
Node mid,
Node right,
int value) |
Node(int nodeType,
Node left,
Node mid,
Node mid2,
Node right) |
Copyright © 2018. All rights reserved.