| Index: tests/kernel/unsorted/nsm_dispatcher_test.dart
|
| diff --git a/tests/kernel/unsorted/nsm_dispatcher_test.dart b/tests/kernel/unsorted/nsm_dispatcher_test.dart
|
| index 39ed6207a0b4eb448486edca2694a70b34b3aad6..add1ece73edbc73c24ecacb6a8413102ead2e66e 100644
|
| --- a/tests/kernel/unsorted/nsm_dispatcher_test.dart
|
| +++ b/tests/kernel/unsorted/nsm_dispatcher_test.dart
|
| @@ -20,12 +20,10 @@ class A {
|
|
|
| main() {
|
| var o = new A();
|
| - Expect.isTrue(o.fun() == '|Symbol("fun")|');
|
| - Expect.isTrue(o.fun(1) == '|Symbol("fun")|1|');
|
| - Expect.isTrue(o.fun(1, 2) == '|Symbol("fun")|1|2|');
|
| - Expect.isTrue(o.fun(1, b: 2) == '|Symbol("fun")|1|Symbol("b")/2|');
|
| - Expect.isTrue(
|
| - o.fun(1, a: 1, b: 2) == '|Symbol("fun")|1|Symbol("a")/1|Symbol("b")/2|');
|
| - Expect.isTrue(
|
| - o.fun(1, b: 2, a: 1) == '|Symbol("fun")|1|Symbol("a")/1|Symbol("b")/2|');
|
| + Expect.isTrue(o.fun() == '|${#fun}|');
|
| + Expect.isTrue(o.fun(1) == '|${#fun}|1|');
|
| + Expect.isTrue(o.fun(1, 2) == '|${#fun}|1|2|');
|
| + Expect.isTrue(o.fun(1, b: 2) == '|${#fun}|1|${#b}/2|');
|
| + Expect.isTrue(o.fun(1, a: 1, b: 2) == '|${#fun}|1|${#a}/1|${#b}/2|');
|
| + Expect.isTrue(o.fun(1, b: 2, a: 1) == '|${#fun}|1|${#a}/1|${#b}/2|');
|
| }
|
|
|