Lines Matching full:expecting
199 def __init__(self, expecting, input):
201 self.expecting = expecting
205 #return "MismatchedTokenException("+self.expecting+")"
207 self.getUnexpectedType(), self.expecting
220 exp = ", expected %s" % self.expecting
221 if self.expecting == INVALID_TOKEN_TYPE:
233 We were expecting a token but it's not found. The current token
237 def __init__(self, expecting, input, inserted):
238 MismatchedTokenException.__init__(self, expecting, input)
244 return self.expecting
279 def __init__(self, expecting, input):
282 self.expecting = expecting
287 self.getUnexpectedType(), self.expecting
297 self.getUnexpectedType(), self.expecting
355 def __init__(self, expecting, input):
358 self.expecting = expecting
362 self.getUnexpectedType(), self.expecting