X-Git-Url: https://ocean-lang.org/code/?p=ocean;a=blobdiff_plain;f=csrc%2Foceani.mdc;h=0e6cebeb30b511853746129d4ebd3dcfa8522852;hp=fc2aaef16d0cf6da3e2661da17db599a838c8ce8;hb=abd08191347dfb83ac7e1aacf6a6aa3f8f796fcd;hpb=0b4b292a5e6744bcf7f35e012466c969c115c1b5 diff --git a/csrc/oceani.mdc b/csrc/oceani.mdc index fc2aaef..0e6cebe 100644 --- a/csrc/oceani.mdc +++ b/csrc/oceani.mdc @@ -2029,7 +2029,7 @@ function will be needed. $*fieldlist FieldBlock -> Open FieldList } ${ $0 = $<2; }$ | Open SimpleFieldList } ${ $0 = $<2; }$ - | : FieldList $$NEWLINE ${ $0 = $<2; }$ + | : FieldList ${ $0 = $<2; }$ FieldList -> FieldLines ${ $0 = $<1; }$ | Newlines FieldLines ${ $0 = $<2; }$ @@ -3058,7 +3058,7 @@ is in-place. Block -> Open Statementlist Close ${ $0 = $<2; }$ | Open SimpleStatements } ${ $0 = reorder_bilist($<2); }$ | : SimpleStatements ${ $0 = reorder_bilist($<2); }$ - | : Statementlist $$OUT ${ $0 = $<2; }$ + | : Statementlist ${ $0 = $<2; }$ Statementlist -> ComplexStatements ${ $0 = reorder_bilist($<1); }$ | Newlines ComplexStatements ${ $0 = reorder_bilist($<2); }$ @@ -3563,7 +3563,7 @@ defined. case Xcond_statement: free_cond_statement(cast(cond_statement, e)); break; ###### ComplexStatement Grammar - | CondStatement $$NEWLINE ${ $0 = $<1; }$ + | CondStatement ${ $0 = $<1; }$ ###### Grammar @@ -4011,7 +4011,7 @@ searching through for the Nth constant for decreasing N. DeclareConstant -> const Open ConstList Close | const Open SimpleConstList } - | const : ConstList $$NEWLINE + | const : ConstList | const SimpleConstList NEWLINE ConstList -> ConstLines