Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: tests/lib/mirrors/fake_function_without_call_test.dart

Issue 49083004: Re-triage mirror test failures on the analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "dart:mirrors"; 5 import "dart:mirrors";
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 8
9 class MultiArityFunction implements Function { 9 class MultiArityFunction
10 implements Function /// static type warning
11 {
10 noSuchMethod(Invocation msg) { 12 noSuchMethod(Invocation msg) {
11 if (msg.memberName != #call) return super.noSuchMethod(msg); 13 if (msg.memberName != #call) return super.noSuchMethod(msg);
12 return msg.positionalArguments.join(","); 14 return msg.positionalArguments.join(",");
13 } 15 }
14 } 16 }
15 17
16 main() { 18 main() {
17 var f = new MultiArityFunction(); 19 var f = new MultiArityFunction();
18 20
19 Expect.isTrue(f is Function); 21 Expect.isTrue(f is Function);
(...skipping 11 matching lines...) Expand all
31 Expect.equals('a', cm.apply(['a']).reflectee); 33 Expect.equals('a', cm.apply(['a']).reflectee);
32 Expect.equals('a,b', cm.apply(['a', 'b']).reflectee); 34 Expect.equals('a,b', cm.apply(['a', 'b']).reflectee);
33 Expect.equals('a,b,c', cm.apply(['a', 'b', 'c']).reflectee); 35 Expect.equals('a,b,c', cm.apply(['a', 'b', 'c']).reflectee);
34 36
35 MethodMirror mm = cm.function; 37 MethodMirror mm = cm.function;
36 Expect.isNull(mm); 38 Expect.isNull(mm);
37 39
38 ClassMirror km = cm.type; 40 ClassMirror km = cm.type;
39 Expect.equals(reflectClass(MultiArityFunction), km); 41 Expect.equals(reflectClass(MultiArityFunction), km);
40 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698