diff --git a/src/org/rascalmpl/interpreter/result/Result.java b/src/org/rascalmpl/interpreter/result/Result.java index d1d4a9760b..a6847f9ecb 100644 --- a/src/org/rascalmpl/interpreter/result/Result.java +++ b/src/org/rascalmpl/interpreter/result/Result.java @@ -388,11 +388,11 @@ protected Result subtractList(ListResult that) { } protected Result multiplyList(ListResult that) { - return that.undefinedError(MULTIPLICATION_STRING, that); + return that.undefinedError(MULTIPLICATION_STRING, this); } protected Result intersectList(ListResult that) { - return that.undefinedError(INTERSECTION_STRING, that); + return that.undefinedError(INTERSECTION_STRING, this); } protected Result addSet(SetResult that) {