Chromium Code Reviews| Index: pkg/compiler/lib/src/cps_ir/builtin_operator.dart |
| diff --git a/pkg/compiler/lib/src/cps_ir/builtin_operator.dart b/pkg/compiler/lib/src/cps_ir/builtin_operator.dart |
| index 59812db1e15ad5d7e42b6cb16fb08666e0b541dd..b9aa3f48d4cc9e6b06d298acf031fec0b22042cd 100644 |
| --- a/pkg/compiler/lib/src/cps_ir/builtin_operator.dart |
| +++ b/pkg/compiler/lib/src/cps_ir/builtin_operator.dart |
| @@ -142,6 +142,20 @@ enum BuiltinOperator { |
| /// Compiles to `typeof x !== 'number' || Math.floor(x) !== x` |
| IsNotInteger, |
| + /// Returns true if `x` is an unsigned 32-bit integer. |
| + /// |
| + /// The argument must be repeated 2 times. |
| + /// |
| + /// Compiles to `x >>> 0 === x` |
| + IsUnsigned32BitInteger, |
| + |
| + /// Returns true if `x` is an unsigned 32-bit integer. |
|
Siggi Cherem (dart-lang)
2016/02/16 16:52:16
true -> false (or 'is' -> 'is not')
asgerf
2016/02/17 08:33:09
Thanks.
|
| + /// |
| + /// The argument must be repeated 2 times. |
| + /// |
| + /// Compiles to `x >>> 0 !== x` |
| + IsNotUnsigned32BitInteger, |
| + |
| /// Returns true if the argument is a fixed length Array. |
| /// |
| /// Uses one argument. |