| Index: mojo/public/bindings/pylib/parse/mojo_parser.py
|
| diff --git a/mojo/public/bindings/pylib/parse/mojo_parser.py b/mojo/public/bindings/pylib/parse/mojo_parser.py
|
| index b6bcd3547d67a2e749b3045b7ca9f1806f81bf21..3cf080abd12296c7c8c03b951216a83c93c437fb 100755
|
| --- a/mojo/public/bindings/pylib/parse/mojo_parser.py
|
| +++ b/mojo/public/bindings/pylib/parse/mojo_parser.py
|
| @@ -188,7 +188,7 @@ class Parser(object):
|
| p[0] = p[1]
|
|
|
| def p_specializedhandle(self, p):
|
| - """specializedhandle : HANDLE LT specializedhandlename GT"""
|
| + """specializedhandle : HANDLE LANGLE specializedhandlename RANGLE"""
|
| p[0] = "handle<" + p[3] + ">"
|
|
|
| def p_specializedhandlename(self, p):
|
| @@ -286,17 +286,9 @@ class Parser(object):
|
| | MINUS
|
| | RSHIFT
|
| | LSHIFT
|
| - | LT
|
| - | LE
|
| - | GE
|
| - | GT
|
| - | EQ
|
| - | NE
|
| | AND
|
| | OR
|
| - | XOR
|
| - | LAND
|
| - | LOR"""
|
| + | XOR"""
|
| p[0] = p[1]
|
|
|
| def p_unary_expression(self, p):
|
| @@ -307,8 +299,7 @@ class Parser(object):
|
| def p_unary_operator(self, p):
|
| """unary_operator : PLUS
|
| | MINUS
|
| - | NOT
|
| - | LNOT"""
|
| + | NOT"""
|
| p[0] = p[1]
|
|
|
| def p_primary_expression(self, p):
|
|
|