| Index: lib/compiler/implementation/constant_system_dart.dart
|
| ===================================================================
|
| --- lib/compiler/implementation/constant_system_dart.dart (revision 13209)
|
| +++ lib/compiler/implementation/constant_system_dart.dart (working copy)
|
| @@ -280,7 +280,7 @@
|
| final SourceString name = const SourceString('>=');
|
| const GreaterEqualOperation();
|
| bool foldNums(num left, num right) => left >= right;
|
| - apply(left, right) => left <= right;
|
| + apply(left, right) => left >= right;
|
| }
|
|
|
| class EqualsOperation implements BinaryOperation {
|
|
|