示例#1
0
		public ASTNode(ASTNode other)
		{
			_startIndex = -1;
			_stopIndex = -1;
			_childIndex = -1;
			_token = new HqlToken(other._token);
			_startIndex = other._startIndex;
			_stopIndex = other._stopIndex;
		}
示例#2
0
		public ASTNode(ASTNode other)
		{
			_startIndex = -1;
			_stopIndex = -1;
			_childIndex = -1;
			_token = other._token;
			_startIndex = other._startIndex;
			_stopIndex = other._stopIndex;
			
		}