| Index: lib/compiler/implementation/constant_system.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/constant_system.dart (revision 12944)
|
| +++ lib/compiler/implementation/constant_system.dart (working copy)
|
| @@ -10,11 +10,13 @@
|
| interface UnaryOperation extends Operation {
|
| /** Returns [:null:] if it was unable to fold the operation. */
|
| Constant fold(Constant constant);
|
| + apply(value);
|
| }
|
|
|
| interface BinaryOperation extends Operation {
|
| /** Returns [:null:] if it was unable to fold the operation. */
|
| Constant fold(Constant left, Constant right);
|
| + apply(left, right);
|
| }
|
|
|
| /**
|
|
|