Index: pkg/compiler/lib/src/constants/constant_system.dart |
diff --git a/pkg/compiler/lib/src/constants/constant_system.dart b/pkg/compiler/lib/src/constants/constant_system.dart |
index b7ceb6b6010f566e4def6780fb338896c7caba9e..3b416b1beec1a43f75f6b1dcbe1a145f05565204 100644 |
--- a/pkg/compiler/lib/src/constants/constant_system.dart |
+++ b/pkg/compiler/lib/src/constants/constant_system.dart |
@@ -4,7 +4,6 @@ |
library dart2js.constant_system; |
-import '../common/backend_api.dart' show BackendClasses; |
import '../common_elements.dart' show CommonElements; |
import '../elements/resolution_types.dart' show DartTypes; |
import '../elements/types.dart'; |
@@ -67,16 +66,10 @@ abstract class ConstantSystem { |
ConstantValue createBool(bool value); |
ConstantValue createNull(); |
ConstantValue createList(InterfaceType type, List<ConstantValue> values); |
- ConstantValue createMap( |
- CommonElements commonElements, |
- BackendClasses backendClasses, |
- InterfaceType type, |
- List<ConstantValue> keys, |
- List<ConstantValue> values); |
- ConstantValue createType(CommonElements commonElements, |
- BackendClasses backendClasses, DartType type); |
- ConstantValue createSymbol(CommonElements commonElements, |
- BackendClasses backendClasses, String text); |
+ ConstantValue createMap(CommonElements commonElements, InterfaceType type, |
+ List<ConstantValue> keys, List<ConstantValue> values); |
+ ConstantValue createType(CommonElements commonElements, DartType type); |
+ ConstantValue createSymbol(CommonElements commonElements, String text); |
// We need to special case the subtype check for JavaScript constant |
// system because an int is a double at runtime. |