diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-02 14:08:42 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-06-02 14:08:42 +0300 |
commit | c3972d512a3d3da9b3c5442cde7ebef6740195e1 (patch) | |
tree | 2dd59abb814b16946d987f814b89a90f609169d0 | |
parent | 11e81618d20ee7f03cb61248cc0587122fa563bb (diff) | |
download | meson-c3972d512a3d3da9b3c5442cde7ebef6740195e1.zip meson-c3972d512a3d3da9b3c5442cde7ebef6740195e1.tar.gz meson-c3972d512a3d3da9b3c5442cde7ebef6740195e1.tar.bz2 |
Removed braces from language syntax.
-rw-r--r-- | mparser.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -29,8 +29,6 @@ tokens = ['LPAREN', 'RPAREN', 'LBRACKET', 'RBRACKET', - 'LBRACE', - 'RBRACE', 'ATOM', 'COMMENT', 'ASSIGN', @@ -53,8 +51,6 @@ t_LPAREN = '\(' t_RPAREN = '\)' t_LBRACKET = '\[' t_RBRACKET = '\]' -t_LBRACE = '\{' -t_RBRACE = '\}' t_ignore_COMMENT = '\\#.*?(?=\\n)' t_COMMA = ',' t_DOT = '\.' |