| Index: pkg/analyzer/test/src/context/mock_sdk.dart
|
| diff --git a/pkg/analyzer/test/src/context/mock_sdk.dart b/pkg/analyzer/test/src/context/mock_sdk.dart
|
| index 8103e12219ef70126ee5f65c3446d7aad9854d47..a28f4b862c6f8de483fe8802e862a53349e0d768 100644
|
| --- a/pkg/analyzer/test/src/context/mock_sdk.dart
|
| +++ b/pkg/analyzer/test/src/context/mock_sdk.dart
|
| @@ -113,6 +113,14 @@ abstract class num implements Comparable<num> {
|
| num operator -(num other);
|
| num operator *(num other);
|
| num operator /(num other);
|
| + int operator ^(int other);
|
| + int operator &(int other);
|
| + int operator |(int other);
|
| + int operator <<(int other);
|
| + int operator >>(int other);
|
| + int operator ~/(int other);
|
| + int operator %(int other);
|
| + int operator ~();
|
| int toInt();
|
| double toDouble();
|
| num abs();
|
|
|