Chromium Code Reviews| 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); |
|
Johnni Winther
2013/12/03 11:52:31
Seems strange to remove this when BinaryOperation.
ahe
2013/12/04 11:45:43
Perhaps, but this method has a problematic name be
|
| } |
| abstract class BinaryOperation extends Operation { |