Lines Matching full:payload
110 This is a tree node without any payload; just navigation and factory stuff.
251 In case we don't have a token payload, what is the line for errors?
286 def createWithPayload(self, payload):
289 then the token just becomes the payload. This is the most
607 # Object create(Token payload);
673 @brief A generic tree implementation with no payload.
979 if no token payload but you might have to set token type for diff
1173 token DECL, but you need to create it as a payload or whatever for
1176 If you care what the token payload objects' type is, you should
1210 def __init__(self, payload):
1224 # A single token is the payload
1225 if payload is None:
1228 elif isinstance(payload, CommonTree):
1229 self.token = payload.token
1230 self.startIndex = payload.startIndex
1231 self.stopIndex = payload.stopIndex
1233 elif payload is None or isinstance(payload, Token):
1234 self.token = payload
1237 raise TypeError(type(payload).__name__)
1503 def createWithPayload(self, payload):
1504 return CommonTree(payload)
1511 token DECL, but you need to create it as a payload or whatever for
1514 If you care what the token payload objects' type is, you should
2370 payload. Set the exception token and do the default behavior.
2567 which returns either an AST node wrapped around a token payload or