aboutsummaryrefslogtreecommitdiff
path: root/runtime/ActionScript/project/src/org/antlr/runtime/tree/CommonTree.as
blob: 87142680b7d722529bcb91c73d9ac33e5a16052f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
 [The "BSD licence"]
 Copyright (c) 2005-2006 Terence Parr
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. The name of the author may not be used to endorse or promote products
    derived from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.antlr.runtime.tree {
	import org.antlr.runtime.Token;
	import org.antlr.runtime.TokenConstants;
	
	/** A tree node that is wrapper for a Token object.  After 3.0 release
	 *  while building tree rewrite stuff, it became clear that computing
	 *  parent and child index is very difficult and cumbersome.  Better to
	 *  spend the space in every tree node.  If you don't want these extra
	 *  fields, it's easy to cut them out in your own BaseTree subclass.
	 */
	public class CommonTree extends BaseTree {
		/** A single token is the payload */
		protected var _token:Token;
		
		/** What token indexes bracket all tokens associated with this node
		 *  and below?
		 */
		public var startIndex:int=-1, stopIndex:int=-1;
	
		/** Who is the parent node of this node; if null, implies node is root */
		protected var _parent:CommonTree;
	
		/** What index is this node in the child list? Range: 0..n-1 */
		protected var _childIndex:int = -1;
			
		public function CommonTree(node:CommonTree = null) {
			if (node != null) {
				super(node);
				this._token = node._token;
				this.startIndex = node.startIndex;
				this.stopIndex = node.stopIndex;
			}
		}
	
		public static function createFromToken(t:Token):CommonTree {
			var ct:CommonTree = new CommonTree();
			ct._token = t;
			return ct;
		}
	
		public function get token():Token {
			return _token;
		}
	
		public override function dupNode():Tree {
			return new CommonTree(this);
		}
	
		public override function get isNil():Boolean {
			return _token==null;
		}
	
		public override function get type():int {
			if ( _token==null ) {
				return TokenConstants.INVALID_TOKEN_TYPE;
			}
			return _token.type;
		}
	
		public override function get text():String {
			if ( _token==null ) {
				return null;
			}
			return _token.text;
		}
	
		public override function get line():int {
			if ( _token==null || _token.line==0 ) {
				if ( childCount >0 ) {
					return getChild(0).line;
				}
				return 0;
			}
			return _token.line;
		}
	
		public override function get charPositionInLine():int {
			if ( _token==null || _token.charPositionInLine==-1 ) {
				if ( childCount>0 ) {
					return getChild(0).charPositionInLine;
				}
				return 0;
			}
			return _token.charPositionInLine;
		}
	
		public override function get tokenStartIndex():int {
			if ( startIndex==-1 && _token!=null ) {
				return _token.tokenIndex;
			}
			return startIndex;
		}
	
		public override function set tokenStartIndex(index:int):void {
			startIndex = index;
		}
	
		public override function get tokenStopIndex():int {
			if ( stopIndex==-1 && _token!=null ) {
				return _token.tokenIndex;
			}
			return stopIndex;
		}
	
		public override function set tokenStopIndex(index:int):void {
			stopIndex = index;
		}

		public override function get childIndex():int {
			return _childIndex;
		}
	
		public override function get parent():Tree {
			return _parent;
		}
	
		public override function set parent(t:Tree):void {
			this._parent = CommonTree(t);
		}
	
		public override function set childIndex(index:int):void {
			this._childIndex = index;
		}

		public function toString():String {
			if ( isNil ) {
				return "nil";
			}
			if ( type==TokenConstants.INVALID_TOKEN_TYPE ) {
    			return "<errornode>";
    		}
    		if ( token==null ) {
    			return null;
    		}
			return _token.text;
		}
	}

}