aboutsummaryrefslogtreecommitdiff
path: root/mparser.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-06-02 14:08:42 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-06-02 14:08:42 +0300
commitc3972d512a3d3da9b3c5442cde7ebef6740195e1 (patch)
tree2dd59abb814b16946d987f814b89a90f609169d0 /mparser.py
parent11e81618d20ee7f03cb61248cc0587122fa563bb (diff)
downloadmeson-c3972d512a3d3da9b3c5442cde7ebef6740195e1.zip
meson-c3972d512a3d3da9b3c5442cde7ebef6740195e1.tar.gz
meson-c3972d512a3d3da9b3c5442cde7ebef6740195e1.tar.bz2
Removed braces from language syntax.
Diffstat (limited to 'mparser.py')
-rw-r--r--mparser.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/mparser.py b/mparser.py
index 821ec35..27bec58 100644
--- a/mparser.py
+++ b/mparser.py
@@ -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 = '\.'