| Index: src/lexer/lexer_py.re
|
| diff --git a/src/lexer/lexer_py.re b/src/lexer/lexer_py.re
|
| index 285b2c9f9b057171274debb426fc4973dbeaf4f0..37c9462c24076106929c882c10982935f5f9cbc3 100644
|
| --- a/src/lexer/lexer_py.re
|
| +++ b/src/lexer/lexer_py.re
|
| @@ -100,7 +100,7 @@ number { PUSH_TOKEN(NUMBER); }
|
| "," { PUSH_TOKEN(COMMA); }
|
|
|
| line_terminator+ { PUSH_LINE_TERMINATOR(); }
|
| -whitespace { SKIP } # TODO implement skip
|
| +whitespace { SKIP(); } # TODO implement skip
|
|
|
| "\"" <<DoubleQuoteString>>
|
| "'" <<SingleQuoteString>>
|
| @@ -197,14 +197,14 @@ eof <<terminate>>
|
| /./ <<continue>>
|
|
|
| <MultiLineComment>
|
| -"*/" { SKIP }
|
| +"*/" { SKIP(); }
|
| # need to force action
|
| line_terminator+ { PUSH_LINE_TERMINATOR(); } <<continue>>
|
| eof <<terminate>>
|
| /./ <<continue>>
|
|
|
| <HtmlComment>
|
| -"-->" { SKIP }
|
| +"-->" { SKIP(); }
|
| # need to force action
|
| line_terminator+ { PUSH_LINE_TERMINATOR(); } <<continue>>
|
| eof <<terminate>>
|
|
|