end of practical3 (no bonus)

This commit is contained in:
simonkellet 2022-09-27 10:23:16 +01:00
parent 4341d02572
commit e1268aae42
5 changed files with 12 additions and 1 deletions

View File

@ -43,4 +43,7 @@ public final class StdEnvironment {
public static FuncDeclaration chrDecl, ordDecl, eolDecl, eofDecl;
//keep the bar separate for practical 3 (week 3) work!
public static UnaryOperatorDeclaration barDecl;
}

View File

@ -954,6 +954,10 @@ public final class Checker implements ActualParameterVisitor<FormalParameter, Vo
StdEnvironment.notlessDecl = declareStdBinaryOp(">=", StdEnvironment.integerType, StdEnvironment.integerType,
StdEnvironment.booleanType);
//add the new bar operator!
StdEnvironment.barDecl = declareStdUnaryOp("|", StdEnvironment.integerType, StdEnvironment.integerType);
StdEnvironment.charDecl = declareStdType("Char", StdEnvironment.charType);
StdEnvironment.chrDecl = declareStdFunc("chr",
new SingleFormalParameterSequence(

View File

@ -929,3 +929,4 @@ public class Parser {
return fieldAST;
}
}

View File

@ -162,7 +162,10 @@ public class LayoutVisitor implements ActualParameterVisitor<Void, DrawingTree>,
@Override
public DrawingTree visitRepeatCommand(RepeatCommand ast, Void obj) {
return null;
//very similar to the while cmd, just reverse!
var d1 = ast.C.visit(this);
var d2 = ast.E.visit(this);
return layoutBinary("Repeat.Com.", d1, d2);
}
// Expressions

Binary file not shown.