Commit 5ea2561a authored by Stefan Behnel's avatar Stefan Behnel

removed dead code

parent 73bad093
...@@ -132,10 +132,6 @@ class Scanner(object): ...@@ -132,10 +132,6 @@ class Scanner(object):
self.start_pos = self.cur_pos self.start_pos = self.cur_pos
self.start_line = self.cur_line self.start_line = self.cur_line
self.start_col = self.cur_pos - self.cur_line_start self.start_col = self.cur_pos - self.cur_line_start
# if self.trace:
# action = self.run_machine()
# else:
# action = self.run_machine_inlined()
action = self.run_machine_inlined() action = self.run_machine_inlined()
if action is not None: if action is not None:
if self.trace: if self.trace:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment