Creates a new instance of Token.
(lines, start, end, token_type)
| 235 | |
| 236 | |
| 237 | def MakeToken(lines, start, end, token_type): |
| 238 | """Creates a new instance of Token.""" |
| 239 | |
| 240 | return Token(start, end, SubString(lines, start, end), token_type) |
| 241 | |
| 242 | |
| 243 | def ParseToken(lines, pos, regex, token_type): |
no test coverage detected