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

Side by Side Diff: tests/compiler/dart2js_native/native_call_arity2_frog_test.dart

Issue 11227038: Fix and reenable dart2js extra tests and dart2js native tests. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // This is a similar test to NativeCallArity1FrogTest, but makes sure 5 // This is a similar test to NativeCallArity1FrogTest, but makes sure
6 // that subclasses also get the right number of arguments. 6 // that subclasses also get the right number of arguments.
7 7
8 class A native "*A" { 8 class A native "*A" {
9 int foo([x, y]) native; 9 int foo([x, y]) native;
10 } 10 }
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 testDynamicContext() { 42 testDynamicContext() {
43 var things = [makeA(), makeB()]; 43 var things = [makeA(), makeB()];
44 var a = things[0]; 44 var a = things[0];
45 var b = things[1]; 45 var b = things[1];
46 46
47 Expect.equals(0, a.foo()); 47 Expect.equals(0, a.foo());
48 Expect.equals(1, a.foo(10)); 48 Expect.equals(1, a.foo(10));
49 Expect.equals(2, a.foo(10, 20)); 49 Expect.equals(2, a.foo(10, 20));
50 Expect.throws(() => a.foo(10, 20, 30)); 50 Expect.throws(() => a.foo(10, 20, 30));
51 51
52 Expect.equals(1, a.foo(x: 10)); // 1 = x 52 Expect.equals(1, a.foo(10));
53 Expect.equals(2, a.foo(y: 20)); // 2 = x, y 53 Expect.equals(2, a.foo(null, 20));
54 Expect.throws(() => a.foo(10, 20, 30)); 54 Expect.throws(() => a.foo(10, 20, 30));
55 55
56 Expect.equals(0, b.foo()); 56 Expect.equals(0, b.foo());
57 Expect.equals(1, b.foo(10)); 57 Expect.equals(1, b.foo(10));
58 Expect.equals(2, b.foo(10, 20)); 58 Expect.equals(2, b.foo(10, 20));
59 Expect.throws(() => b.foo(10, 20, 30)); 59 Expect.throws(() => b.foo(10, 20, 30));
60 60
61 Expect.equals(1, b.foo(x: 10)); // 1 = x 61 Expect.equals(1, b.foo(10));
62 Expect.equals(2, b.foo(y: 20)); // 2 = x, y 62 Expect.equals(2, b.foo(null, 20));
63 Expect.throws(() => b.foo(10, 20, 30)); 63 Expect.throws(() => b.foo(10, 20, 30));
64 } 64 }
65 65
66 testStaticContext() { 66 testStaticContext() {
67 A a = makeA(); 67 A a = makeA();
68 B b = makeB(); 68 B b = makeB();
69 69
70 Expect.equals(0, a.foo()); 70 Expect.equals(0, a.foo());
71 Expect.equals(1, a.foo(10)); 71 Expect.equals(1, a.foo(10));
72 Expect.equals(2, a.foo(10, 20)); 72 Expect.equals(2, a.foo(10, 20));
73 Expect.throws(() => a.foo(10, 20, 30)); 73 Expect.throws(() => a.foo(10, 20, 30));
74 74
75 Expect.equals(1, a.foo(x: 10)); // 1 = x 75 Expect.equals(1, a.foo(10));
76 Expect.equals(2, a.foo(y: 20)); // 2 = x, y 76 Expect.equals(2, a.foo(null, 20));
77 Expect.throws(() => a.foo(10, 20, 30)); 77 Expect.throws(() => a.foo(10, 20, 30));
78 78
79 Expect.equals(0, b.foo()); 79 Expect.equals(0, b.foo());
80 Expect.equals(1, b.foo(10)); 80 Expect.equals(1, b.foo(10));
81 Expect.equals(2, b.foo(10, 20)); 81 Expect.equals(2, b.foo(10, 20));
82 Expect.throws(() => b.foo(10, 20, 30)); 82 Expect.throws(() => b.foo(10, 20, 30));
83 83
84 Expect.equals(1, b.foo(x: 10)); // 1 = x 84 Expect.equals(1, b.foo(10));
85 Expect.equals(2, b.foo(y: 20)); // 2 = x, y 85 Expect.equals(2, b.foo(null, 20));
86 Expect.throws(() => b.foo(10, 20, 30)); 86 Expect.throws(() => b.foo(10, 20, 30));
87 } 87 }
88 88
89 main() { 89 main() {
90 setup(); 90 setup();
91 testDynamicContext(); 91 testDynamicContext();
92 testStaticContext(); 92 testStaticContext();
93 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698