Skip to content

Commit

Permalink
grammar for object creation expression w/ brace is added
Browse files Browse the repository at this point in the history
  • Loading branch information
dongjoon1251 committed Oct 22, 2014
1 parent 16340c5 commit d077d3d
Show file tree
Hide file tree
Showing 3 changed files with 2,156 additions and 1,578 deletions.
3 changes: 3 additions & 0 deletions grammar/csharp.jison
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ post-decrement-expression
object-creation-expression
: NEW type OPEN_PARENS CLOSE_PARENS
| NEW type OPEN_PARENS argument-list CLOSE_PARENS
| NEW type OPEN_BRACE CLOSE_BRACE
| NEW type OPEN_BRACE argument-list CLOSE_BRACE
| NEW type OPEN_BRACE argument-list COMMA CLOSE_BRACE
;

array-creation-expression
Expand Down
Loading

0 comments on commit d077d3d

Please sign in to comment.