| Index: mojo/public/tools/bindings/pylib/mojom/parse/lexer.py
|
| diff --git a/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py b/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py
|
| index f2bc1413f4eb4f031733e752f4f4fadd0a92d850..ad20252da28e7fb5145338a072a90a2e3c071f6b 100644
|
| --- a/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py
|
| +++ b/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py
|
| @@ -92,6 +92,7 @@ class Lexer(object):
|
| 'MINUS',
|
| 'PLUS',
|
| 'AMP',
|
| + 'QSTN',
|
|
|
| # Assignment
|
| 'EQUALS',
|
| @@ -172,6 +173,7 @@ class Lexer(object):
|
| t_MINUS = r'-'
|
| t_PLUS = r'\+'
|
| t_AMP = r'&'
|
| + t_QSTN = r'\?'
|
|
|
| # =
|
| t_EQUALS = r'='
|
|
|