X-Git-Url: https://ruin.nu/git/?p=proglang.git;a=blobdiff_plain;f=syntax.cf;h=0347ce56e2982362825fb40f7ec2582f778e9690;hp=d09a25c33849d524632a0b352994da59b2cf60b6;hb=d553df8dfdffca78342d6fae142ceded9cd64415;hpb=ef4659dbfa5051372cf067f8c0ed2bbe77146650 diff --git a/syntax.cf b/syntax.cf index d09a25c..0347ce5 100644 --- a/syntax.cf +++ b/syntax.cf @@ -1,40 +1,60 @@ -- ordinary rules -True. Bool ::= "true" ; -False. Bool ::= "false" ; - -SDecl. Stm ::= Type Ident "=" Exp ";" ; -decl. Stm ::= Type Ident ";" ; -define decl t v = SDecl t v EDefault ; -SExp. Stm ::= Exp ";" ; -SBlock. Stm ::= "{" [Stm] "}" ; -if. Stm ::= "if" "(" Exp ")" Stm ; + +True. Bool ::= "true" ; +False. Bool ::= "false" ; + +TInt. Type ::= "int" ; +TBool. Type ::= "bool" ; + +Program. Stms ::= [Stm] ; + + +SExp. Stm ::= Exp ";" ; +SBlock. Stm ::= "{" [Stm] "}" ; +SDecl. Stm ::= Type Ident "=" Exp ";" ; +SDeclD. Stm ::= Type Ident ";" ; + + +SWhile. Stm ::= "while" "(" Exp ")" Stm ; SIf. Stm ::= "if" "(" Exp ")" Stm "else" Stm ; +if. Stm ::= "if" "(" Exp ")" Stm ; define if e s = SIf e s SNoop ; -SWhile. Stm ::= "while" "(" Exp ")" Stm ; + -- SFor. Stm ::= "for" "(" Stm Exp ";" Exp ")" Stm ; SPrint. Stm ::= "print" Exp ";" ; + + EAss. Exp ::= Ident "=" Exp; + compExp. Exp ::= Exp1 Op0 Exp1 ; define compExp e1 o e2 = BiOpExp e1 o e2 ; + op1. Exp1 ::= Exp1 Op1 Exp2 ; define op1 e1 o e2 = BiOpExp e1 o e2 ; + op2. Exp2 ::= Exp2 Op2 Exp3 ; define op2 e1 o e2 = BiOpExp e1 o e2 ; + postIncr. Exp3 ::= Ident "++" ; define postIncr i = EPost i Plus ; + postDecr. Exp3 ::= Ident "--" ; define postDecr i = EPost i Minus ; + EVar. Exp3 ::= Ident ; EInt. Exp3 ::= Integer ; +EBool. Exp3 ::= Bool ; + ENeg. Exp3 ::= "-" Exp3 ; ENot. Exp3 ::= "!" Exp3 ; -EBool. Exp3 ::= Bool ; + EReadI. Exp3 ::= "readInt" ; EReadB. Exp3 ::= "readBool" ; + coercions Exp 3 ; @@ -43,7 +63,6 @@ coercions Exp 3 ; terminator Stm "" ; -Program. Stms ::= [Stm] ; Lt. Op0 ::= "<" ; ELt. Op0 ::= "<=" ; @@ -62,19 +81,16 @@ _. Op ::= Op2; _. Op ::= Op0; - -TInt. Type ::= "int" ; -TBool. Type ::= "bool" ; - -- pragmas -internal ExpT. Exp ::= Type Exp ; -internal SNoop. Stm ::= ; -internal EDefault. Exp ::= ; +-- internal ExpT. Exp ::= Type Exp ; +-- internal EDefault. Exp ::= ; internal BiOpExp. Exp ::= Exp Op Exp ; -internal NoType. Type ::= ; +-- internal NoType. Type ::= ; internal EPost. Exp ::= Ident Op1 ; +internal SNoop. Stm ::= ; + comment "/*" "*/" ; comment "//" ;