Make {} turn things into ords

Auditors: spicyj
This commit is contained in:
Emily Eisenberg
2013-07-09 21:14:04 -07:00
parent 29fde5d364
commit a95b93789a
2 changed files with 3 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ group
: atom
{$$ = $1;}
| '{' ex '}'
{$$ = $2;}
{$$ = [{type: 'ordgroup', value: $2}];}
| func
{$$ = $1;}
;