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

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

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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:_js_helper"; 5 import "dart:_js_helper";
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 7
8 makeCC() native; 8 makeCC() native ;
9 9
10 void setup() native """ 10 void setup() native """
11 function CC() {} 11 function CC() {}
12 makeCC = function() { return new CC; } 12 makeCC = function() { return new CC; }
13 """; 13 """;
14 14
15
16 @Native("CC") 15 @Native("CC")
17 class ClickCounter { 16 class ClickCounter {
18 var status; 17 var status;
19 18
20 var foo; 19 var foo;
21 20
22 init() { 21 init() {
23 foo = wrap(g); 22 foo = wrap(g);
24 } 23 }
25 24
26 g(val) => "### $val ###"; 25 g(val) => "### $val ###";
27 } 26 }
28 27
29 wrap(cb) { 28 wrap(cb) {
30 return (val) { 29 return (val) {
31 return cb("!!! $val !!!"); 30 return cb("!!! $val !!!");
32 }; 31 };
33 } 32 }
34 33
35 main() { 34 main() {
36 setup(); 35 setup();
37 var c = makeCC(); 36 var c = makeCC();
38 c.init(); 37 c.init();
39 // `foo` contains a closure. Make sure that invoking foo through an 38 // `foo` contains a closure. Make sure that invoking foo through an
40 // interceptor works. 39 // interceptor works.
41 Expect.equals("### !!! 499 !!! ###", c.foo(499)); 40 Expect.equals("### !!! 499 !!! ###", c.foo(499));
42 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698