]> ocean-lang.org Git - ocean/blobdiff - csrc/indent_test.mdc
parsergen: remove line_like information.
[ocean] / csrc / indent_test.mdc
index 64ccc4345fad33added5b47b10361660fc3f0a1a..463428b7579b1cf32d29ecafdeb43d42a832146d 100644 (file)
@@ -159,7 +159,7 @@ $*statement
                | Open SimpleStatements } ${ $0 = $<S; }$
                | : SimpleStatements ${ $0 = $<SS; }$
                | : StatementBlock ${ $0 = $<SB; }$
-       StatementBlock -> Statementlist $$OUT ${ $0 = $<Sl; }$
+       StatementBlock -> Statementlist ${ $0 = $<Sl; }$
 
        SimpleStatements -> SimpleStatements ; SimpleStatement ${
                        {
@@ -183,7 +183,7 @@ $*statement
                        }$
        SSline -> SimpleStatements NEWLINE ${ $0 = $<1; }$
        Statement -> SSline ${ $0 = $<1; }$
-               | IfStatement $$NEWLINE ${ $0 = $<1; }$
+               | IfStatement ${ $0 = $<1; }$
                | Statement NEWLINE ${ $0 = $<1; }$
 
        $RIGHT else