| Index: tests/compiler/dart2js/mirrors_test.dart
|
| diff --git a/tests/compiler/dart2js/mirrors_test.dart b/tests/compiler/dart2js/mirrors_test.dart
|
| index 9aca91125d41a4a76da96ecd174811ccd0607e29..3f96f712f95ffd526a507c76f2c1e63388f7f915 100644
|
| --- a/tests/compiler/dart2js/mirrors_test.dart
|
| +++ b/tests/compiler/dart2js/mirrors_test.dart
|
| @@ -225,7 +225,7 @@ void testBar(MirrorSystem system, LibraryMirror helperLibrary,
|
| // Baz<E,F> method3(E func1(F f), Func<E,F> func2) => null;
|
| //
|
| // bool operator==(Object other) => false;
|
| -// int operator negate() => 0;
|
| +// int operator -() => 0;
|
| // }
|
| void testBaz(MirrorSystem system, LibraryMirror helperLibrary,
|
| Map<Object,TypeMirror> types) {
|
| @@ -603,7 +603,7 @@ void testBaz(MirrorSystem system, LibraryMirror helperLibrary,
|
| "Unexpected operatorName");
|
|
|
| ////////////////////////////////////////////////////////////////////////////
|
| - // int operator negate() => 0;
|
| + // int operator -() => 0;
|
| ////////////////////////////////////////////////////////////////////////////
|
| var operator_negate = findMirror(bazClassMembers, "operator",
|
| operatorName: 'negate');
|
|
|