add flag to indicate whether this is a tail call

This commit is contained in:
2020-03-09 15:55:01 +01:00
parent 4f1d009626
commit d1cf626934

View File

@@ -6,6 +6,7 @@ public class FunctionCall extends Expression {
public String name;
public Expression[] arguments;
public boolean isTailRecursive = false;
public FunctionCall(String name, Expression[] arguments) {
this.name = name;