X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=AST.icl;h=68def615627181581cd38a5cba78c35972c5279f;hb=920ef953a2db44169bd34805233fecbbe334d10e;hp=90d1e53870967dedafb737a435ddae8f3477d668;hpb=817af8de40d49db39dcf02ee5fe346f0d7b73118;p=cc1516.git diff --git a/AST.icl b/AST.icl index 90d1e53..68def61 100644 --- a/AST.icl +++ b/AST.icl @@ -84,6 +84,10 @@ instance toString Op2 where BiLesserEq = "<="; BiGreaterEq = ">="; BiUnEqual = "!="; BiAnd = "&&"; BiOr = "||"; BiCons = ":" +instance toString Op1 where + toString UnNegation = "!" + toString UnMinus = "-" + instance print Expr where print (VarExpr _ vd) = print vd print (Op2Expr _ e1 o e2) = ["(":print e1] ++ @@ -110,3 +114,14 @@ printFunCall s args = [s, "(":printersperse "," args] ++ [")"] derive gEq Op2 instance == Op2 where (==) o1 o2 = gEq{|*|} o1 o2 + +instance zero Pos where + zero = {line=0, col=0} + +derive gEq Op1 +instance == Op1 where (==) o1 o2 = gEq{|*|} o1 o2 +instance < Op2 where (<) o1 o2 = toString o1 < toString o2 +instance < Op1 where (<) o1 o2 = toString o1 < toString o2 + +derive gEq Type +instance == Type where (==) t1 t2 = gEq{|*|} t1 t2 \ No newline at end of file