MCPcopy Create free account
hub / github.com/mozilla/rhino / getLastSibling

Method getLastSibling

rhino/src/main/java/org/mozilla/javascript/Node.java:224–230  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

222 }
223
224 public Node getLastSibling() {
225 Node n = this;
226 while (n.next != null) {
227 n = n.next;
228 }
229 return n;
230 }
231
232 public void addChildToFront(Node child) {
233 child.next = first;

Callers 2

addChildrenToFrontMethod · 0.80
addChildrenToBackMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected