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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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 "native_testing.dart"; 5 import "native_testing.dart";
6 6
7 makeCC() native ; 7 makeCC() native;
8 8
9 void setup() native """ 9 void setup() native """
10 function CC() {} 10 function CC() {}
11 makeCC = function() { return new CC; } 11 makeCC = function() { return new CC; }
12 self.nativeConstructor(CC); 12 self.nativeConstructor(CC);
13 """; 13 """;
14 14
15 @Native("CC") 15 @Native("CC")
16 class ClickCounter { 16 class ClickCounter {
17 var status; 17 var status;
(...skipping 15 matching lines...) Expand all
33 33
34 main() { 34 main() {
35 nativeTesting(); 35 nativeTesting();
36 setup(); 36 setup();
37 var c = makeCC(); 37 var c = makeCC();
38 c.init(); 38 c.init();
39 // `foo` contains a closure. Make sure that invoking foo through an 39 // `foo` contains a closure. Make sure that invoking foo through an
40 // interceptor works. 40 // interceptor works.
41 Expect.equals("### !!! 499 !!! ###", c.foo(499)); 41 Expect.equals("### !!! 499 !!! ###", c.foo(499));
42 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698