Searched refs:describe_token (Results 1 - 8 of 8) sorted by relevance
/third_party/jinja2/ |
H A D | lexer.py | 183 def describe_token(token: "Token") -> str: function 192 """Like `describe_token` but for token expressions.""" 273 return describe_token(self) 417 f"expected token {expr!r}, got {describe_token(self.current)!r}",
|
H A D | parser.py | 8 from .lexer import describe_token namespace 677 self.fail(f"unexpected {describe_token(token)!r}", token.lineno) 741 f" got {describe_token(self.stream.current)!r}"
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | lexer.py | 180 def describe_token(token): function 188 """Like `describe_token` but for token expressions.""" 412 "expected token %r, got %r" % (expr, describe_token(self.current)),
|
H A D | parser.py | 7 from .lexer import describe_token namespace 599 self.fail("unexpected '%s'" % describe_token(token), token.lineno) 662 % describe_token(self.stream.current)
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | lexer.py | 171 def describe_token(token): function 179 """Like `describe_token` but for token expressions.""" 382 (expr, describe_token(self.current)),
|
H A D | parser.py | 13 from jinja2.lexer import describe_token, describe_token_expr namespace 583 self.fail("unexpected '%s'" % describe_token(token), token.lineno) 637 describe_token(self.stream.current))
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | lexer.py | 180 def describe_token(token): function 188 """Like `describe_token` but for token expressions.""" 412 "expected token %r, got %r" % (expr, describe_token(self.current)),
|
H A D | parser.py | 7 from .lexer import describe_token namespace 599 self.fail("unexpected '%s'" % describe_token(token), token.lineno) 662 % describe_token(self.stream.current)
|
Completed in 11 milliseconds