From b8fdf6e86b498a396e3e0e344b6e9631e6173507 Mon Sep 17 00:00:00 2001 From: Andrey Breslav Date: Tue, 10 Jan 2012 15:08:47 +0400 Subject: [PATCH] More comprehensible error message --- .../src/org/jetbrains/jet/codegen/ExpressionCodegen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java b/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java index 55f60c98433..f6947e018ba 100644 --- a/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java +++ b/compiler/backend/src/org/jetbrains/jet/codegen/ExpressionCodegen.java @@ -162,7 +162,7 @@ public class ExpressionCodegen extends JetVisitor { @Override public StackValue visitNamedFunction(JetNamedFunction function, StackValue data) { - throw new UnsupportedOperationException("Codegen for named functions is not yet implemented"); + throw new UnsupportedOperationException("Codegen for local functions is not yet implemented"); } @Override