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

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

Issue 26777002: Test reflecting on an object that implements Function but has no call method. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months 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
« no previous file with comments | « tests/lib/lib.status ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import "dart:mirrors";
6
7 import "package:expect/expect.dart";
8
9 class MultiArityFunction implements Function {
10 noSuchMethod(Invocation msg) {
11 if (msg.memberName != #call) return super.noSuchMethod(msg);
12 return msg.positionalArguments.join(",");
13 }
14 }
15
16 main() {
17 var f = new MultiArityFunction();
18
19 Expect.isTrue(f is Function);
20 Expect.equals('a', f('a'));
21 Expect.equals('a,b', f('a', 'b'));
22 Expect.equals('a,b,c', f('a', 'b', 'c'));
23 Expect.equals('a', Function.apply(f, ['a']));
24 Expect.equals('a,b', Function.apply(f, ['a', 'b']));
25 Expect.equals('a,b,c', Function.apply(f, ['a', 'b', 'c']));
26 Expect.throws(() => f.foo('a', 'b', 'c'),
27 (e) => e is NoSuchMethodError);
28
29 InstanceMirror im = reflect(f);
30 Expect.isFalse(im is ClosureMirror);
ahe 2013/10/10 14:33:51 I thought we had agreed that something that implem
rmacnak 2013/10/10 16:24:00 Something that implements call. In this case, what
ahe 2013/10/10 16:48:55 I see the following options: 1. return null. 2. t
31 }
OLDNEW
« no previous file with comments | « tests/lib/lib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698