X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FTree.java;h=102817cc073505b48a370061fa333611d8e9e277;hp=6b295a5b18b7b66f4b1b9367cc21b1951f60c979;hb=6a2ea790f843e058c7e67d3c7d1deebadcfe1fd5;hpb=3468ad83256a1b996f5ddc4406a040ee72f0274a diff --git a/src/edu/berkeley/sbp/Tree.java b/src/edu/berkeley/sbp/Tree.java index 6b295a5..102817c 100644 --- a/src/edu/berkeley/sbp/Tree.java +++ b/src/edu/berkeley/sbp/Tree.java @@ -11,7 +11,7 @@ public class Tree extends PrintableTree> implements Iterable> final T head; Tree[] children; - final Token.Location location; + final Input.Location location; public T head() { return head; } public int numChildren() { return children.length; } @@ -19,10 +19,10 @@ public class Tree extends PrintableTree> implements Iterable> public Iterator> iterator() { return new ArrayIterator(children); } public Tree child(int i) { return children[i]; } - public Token.Location getLocation() { return location; } + public Input.Location getLocation() { return location; } - public Tree(Token.Location loc, T head) { this(loc, head, null); } - public Tree(Token.Location loc, T head, Tree[] children) { + public Tree(Input.Location loc, T head) { this(loc, head, null); } + public Tree(Input.Location loc, T head, Tree[] children) { this.location = loc; this.head = head; Tree[] children2 = children==null ? new Tree[0] : new Tree[children.length];