comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/Node.java @ 10843:50f3f3958555

Truffle: remove Node.EMPTY_ARRAY constant
author Andreas Woess <andreas.woess@jku.at>
date Mon, 22 Jul 2013 16:17:45 +0200
parents 99b58803d6d9
children e87d56a51047
comparison
equal deleted inserted replaced
10842:63c3d7b5edd9 10843:50f3f3958555
31 /** 31 /**
32 * Abstract base class for all Truffle nodes. 32 * Abstract base class for all Truffle nodes.
33 */ 33 */
34 public abstract class Node implements Cloneable { 34 public abstract class Node implements Cloneable {
35 35
36 /**
37 * Utility constant representing an empty node array.
38 */
39 public static final Node[] EMPTY_ARRAY = new Node[0];
40
41 private Node parent; 36 private Node parent;
42 37
43 private SourceSection sourceSection; 38 private SourceSection sourceSection;
44 39
45 /** 40 /**