| Index: dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart b/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
|
| index b2e2b54ee8e47236f2dc7064d5570acd762193ed..4a10d400f41dff625aa2aac24079450757c09f7f 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/constant_system.dart
|
| @@ -6,13 +6,11 @@ part of dart2js;
|
|
|
| abstract class Operation {
|
| String get name;
|
| - bool isUserDefinable();
|
| }
|
|
|
| abstract class UnaryOperation extends Operation {
|
| /** Returns [:null:] if it was unable to fold the operation. */
|
| Constant fold(Constant constant);
|
| - apply(value);
|
| }
|
|
|
| abstract class BinaryOperation extends Operation {
|
|
|