Index: pkg/compiler/lib/src/constant_system_dart.dart |
diff --git a/pkg/compiler/lib/src/constant_system_dart.dart b/pkg/compiler/lib/src/constant_system_dart.dart |
index 60e8899da32930f23d5823fc320c9526a3afa8f3..a19e00368bac979c6b50ab0d1314544afe35389d 100644 |
--- a/pkg/compiler/lib/src/constant_system_dart.dart |
+++ b/pkg/compiler/lib/src/constant_system_dart.dart |
@@ -450,6 +450,11 @@ class DartConstantSystem extends ConstantSystem { |
compiler.backend.typeImplementation.computeType(compiler.resolution)); |
} |
+ @override |
+ ConstantValue createSymbol(Compiler compiler, String text) { |
+ throw new UnsupportedError('DartConstantSystem.evaluate'); |
+ } |
+ |
bool isInt(ConstantValue constant) => constant.isInt; |
bool isDouble(ConstantValue constant) => constant.isDouble; |
bool isString(ConstantValue constant) => constant.isString; |