Skip to content

Commit

Permalink
fix(pointfree-lang): object literal grammar rule (allow initial WS)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Mar 31, 2018
1 parent 910b718 commit 208b5c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pointfree-lang/src/grammar.pegjs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Set
}

Map
= "{" body:MapPair* "}" {
= "{" _ body:MapPair* "}" {
return { type: NodeType.MAP, body };
}

Expand Down

0 comments on commit 208b5c3

Please sign in to comment.