Skip to content
Snippets Groups Projects
Unverified Commit 2c1a5634 authored by Sebastian Höffner's avatar Sebastian Höffner
Browse files

Adding _ as an allowed symbol for atoms, as an alternative grammar included "take_turn".

parent f6447d98
No related branches found
No related tags found
No related merge requests found
......@@ -45,5 +45,5 @@ variable_type::str
;
atom::str
= /[a-zA-Z\-\.]+/
= /[a-zA-Z\-\._]+/
;
......@@ -262,7 +262,7 @@ class OpenCCGParser(Parser):
@tatsumasu('str')
def _atom_(self): # noqa
self._pattern(r'[a-zA-Z\-\.]+')
self._pattern(r'[a-zA-Z\-\._]+')
class OpenCCGSemantics(object):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment