Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
7d0c3289
Commit
7d0c3289
authored
Aug 03, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed multiline flag.
parent
0a96eea5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
22 deletions
+5
-22
__init__.py
arpeggio/__init__.py
+3
-13
peg.py
arpeggio/peg.py
+1
-2
test_flags.py
tests/unit/test_flags.py
+1
-7
No files found.
arpeggio/__init__.py
View file @
7d0c3289
...
...
@@ -490,22 +490,17 @@ class RegExMatch(Match):
It will be used to create regular expression using re.compile.
ignore_case(bool): If case insensitive match is needed.
Default is None to support propagation from global parser setting.
multiline(bool): If regex matching is in multiline mode.
Default is None to support propagation from global parser setting.
'''
def
__init__
(
self
,
to_match
,
rule
=
None
,
ignore_case
=
None
,
multiline
=
None
):
def
__init__
(
self
,
to_match
,
rule
=
None
,
ignore_case
=
None
):
super
(
RegExMatch
,
self
)
.
__init__
(
rule
)
self
.
to_match
=
to_match
self
.
ignore_case
=
ignore_case
self
.
multiline
=
multiline
def
compile
(
self
):
flags
=
0
flags
=
re
.
MULTILINE
if
self
.
ignore_case
:
flags
|=
re
.
IGNORECASE
if
self
.
multiline
:
flags
|=
re
.
MULTILINE
self
.
regex
=
re
.
compile
(
self
.
to_match
,
flags
)
def
__str__
(
self
):
...
...
@@ -790,20 +785,17 @@ class Parser(object):
ws (str): A string consisting of whitespace characters.
reduce_tree (bool): If true non-terminals with single child will be
eliminated from the parse tree. Default is True.
multiline(bool): If RegExMatch is going to match in multiline mode
(default=False).
ignore_case(bool): If case is ignored (default=False)
debug (bool): If true debugging messages will be printed.
comments_model: parser model for comments.
"""
def
__init__
(
self
,
skipws
=
True
,
ws
=
DEFAULT_WS
,
reduce_tree
=
False
,
debug
=
False
,
multiline
=
False
,
ignore_case
=
False
):
debug
=
False
,
ignore_case
=
False
):
self
.
skipws
=
skipws
self
.
ws
=
ws
self
.
reduce_tree
=
reduce_tree
self
.
ignore_case
=
ignore_case
self
.
multiline
=
multiline
self
.
debug
=
debug
self
.
comments_model
=
None
self
.
sem_actions
=
{}
...
...
@@ -1081,8 +1073,6 @@ class ParserPython(Parser):
# parser.
if
expression
.
ignore_case
is
None
:
expression
.
ignore_case
=
self
.
ignore_case
if
expression
.
multiline
is
None
:
expression
.
multiline
=
self
.
multiline
expression
.
compile
()
retval
=
expression
...
...
arpeggio/peg.py
View file @
7d0c3289
...
...
@@ -193,8 +193,7 @@ class SemRuleCrossRef(SemanticAction):
class
SemRegEx
(
SemanticAction
):
def
first_pass
(
self
,
parser
,
node
,
children
):
match
=
RegExMatch
(
children
[
0
],
ignore_case
=
parser
.
ignore_case
,
multiline
=
parser
.
multiline
)
ignore_case
=
parser
.
ignore_case
)
match
.
compile
()
return
match
...
...
tests/unit/test_flags.py
View file @
7d0c3289
...
...
@@ -15,11 +15,10 @@ from arpeggio import RegExMatch as _
from
arpeggio
import
NoMatch
def
foo
():
return
'r'
,
bar
,
baz
,
Optional
(
buz
),
Optional
(
ml
),
EOF
def
foo
():
return
'r'
,
bar
,
baz
,
Optional
(
buz
),
EOF
def
bar
():
return
'BAR'
def
baz
():
return
_
(
r'1\w+'
)
def
buz
():
return
_
(
r'Aba*'
,
ignore_case
=
True
)
def
ml
():
return
_
(
r'//.*$'
,
multiline
=
True
)
@pytest.fixture
def
parser_ci
():
...
...
@@ -39,11 +38,6 @@ def test_parse_tree_nonci(parser_nonci):
with
pytest
.
raises
(
NoMatch
):
parser_nonci
.
parse
(
input_str
)
def
test_parse_multiline
(
parser_ci
):
input_str
=
"""r bar 1baz //adfadsfadf asdfadsfadsf adfadf"""
parse_tree
=
parser_ci
.
parse
(
input_str
)
assert
parse_tree
is
not
None
def
test_flags_override
(
parser_nonci
):
# Parser is not case insensitive
# But the buz match is.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment