end of practical3 (no bonus)
This commit is contained in:
parent
4341d02572
commit
e1268aae42
@ -43,4 +43,7 @@ public final class StdEnvironment {
|
|||||||
|
|
||||||
public static FuncDeclaration chrDecl, ordDecl, eolDecl, eofDecl;
|
public static FuncDeclaration chrDecl, ordDecl, eolDecl, eofDecl;
|
||||||
|
|
||||||
|
//keep the bar separate for practical 3 (week 3) work!
|
||||||
|
public static UnaryOperatorDeclaration barDecl;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -954,6 +954,10 @@ public final class Checker implements ActualParameterVisitor<FormalParameter, Vo
|
|||||||
StdEnvironment.notlessDecl = declareStdBinaryOp(">=", StdEnvironment.integerType, StdEnvironment.integerType,
|
StdEnvironment.notlessDecl = declareStdBinaryOp(">=", StdEnvironment.integerType, StdEnvironment.integerType,
|
||||||
StdEnvironment.booleanType);
|
StdEnvironment.booleanType);
|
||||||
|
|
||||||
|
//add the new bar operator!
|
||||||
|
StdEnvironment.barDecl = declareStdUnaryOp("|", StdEnvironment.integerType, StdEnvironment.integerType);
|
||||||
|
|
||||||
|
|
||||||
StdEnvironment.charDecl = declareStdType("Char", StdEnvironment.charType);
|
StdEnvironment.charDecl = declareStdType("Char", StdEnvironment.charType);
|
||||||
StdEnvironment.chrDecl = declareStdFunc("chr",
|
StdEnvironment.chrDecl = declareStdFunc("chr",
|
||||||
new SingleFormalParameterSequence(
|
new SingleFormalParameterSequence(
|
||||||
|
@ -929,3 +929,4 @@ public class Parser {
|
|||||||
return fieldAST;
|
return fieldAST;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -162,7 +162,10 @@ public class LayoutVisitor implements ActualParameterVisitor<Void, DrawingTree>,
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DrawingTree visitRepeatCommand(RepeatCommand ast, Void obj) {
|
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
|
// Expressions
|
||||||
|
Binary file not shown.
Reference in New Issue
Block a user