Lines Matching refs:oldToken
168 - (id) initWithToken:(ANTLRCommonToken *)oldToken
171 text = [NSString stringWithString:oldToken.text];
173 type = oldToken.type;
174 line = oldToken.line;
175 index = oldToken.index;
176 charPositionInLine = oldToken.charPositionInLine;
177 channel = oldToken.channel;
178 input = oldToken.input;
180 if ( [oldToken isKindOfClass:[ANTLRCommonToken class]] ) {
181 startIndex = oldToken.startIndex;
182 stopIndex = oldToken.stopIndex;