Chromium Code Reviews| Index: lib/compiler/implementation/constant_system_dart.dart |
| =================================================================== |
| --- lib/compiler/implementation/constant_system_dart.dart (revision 13020) |
| +++ 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; |
|
Søren Gjesse
2012/10/02 08:07:20
Oops
|
| } |
| class EqualsOperation implements BinaryOperation { |