| 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 ad13311edef7c3bd6914c09c6d7a5afa2954a9b4..3175d1241918427209a6f10280b951e88e84f2be 100644
|
| --- a/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py
|
| +++ b/mojo/public/tools/bindings/pylib/mojom/parse/lexer.py
|
| @@ -89,6 +89,7 @@ class Lexer(object):
|
| # Operators
|
| 'PLUS', 'MINUS', 'TIMES', 'DIVIDE', 'MOD',
|
| 'OR', 'AND', 'NOT', 'XOR', 'LSHIFT', 'RSHIFT',
|
| + 'AMP',
|
|
|
| # Assignment
|
| 'EQUALS',
|
| @@ -183,6 +184,7 @@ class Lexer(object):
|
| t_XOR = r'\^'
|
| t_LSHIFT = r'<<'
|
| t_RSHIFT = r'>>'
|
| + t_AMP = r'&'
|
|
|
| # =
|
| t_EQUALS = r'='
|
|
|