Added peekline feature to SimpleMatcher.
Compare changes
@@ -29,6 +29,7 @@ class PushbackLineFile(object):
@@ -40,10 +41,18 @@ class PushbackLineFile(object):
Added peekline feature to SimpleMatcher. The matched line can be accessed/peeked before SM with self.fInLine consume/pop it in parsers which is useful when parsing is carried-out with adHoc subfunction and one needs to access the line that SimpleMatcher works on at that instance/context.