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/sourcemaps/invokes_test_file.dart

Issue 1250633002: Add operators test to source_mapping_test. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Cleanup Created 5 years, 5 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 // Test file for testing source mappings of invocations. 5 // Test file for testing source mappings of invocations.
6 6
7 var counter = 0; 7 var counter = 0;
8 var bucket;
9 8
10 main(args) { 9 main(args) {
11 counter++; 10 counter++;
12 invokes(args); 11 invokes(args);
13 return counter; 12 return counter;
14 } 13 }
15 14
16 invokes(parameter) { 15 invokes(parameter) {
17 counter++; 16 counter++;
18 toplevelFunction(); 17 toplevelFunction();
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 super.superMethod(); 118 super.superMethod();
120 super.superField(); 119 super.superField();
121 super.superGetter(); 120 super.superGetter();
122 121
123 C(); 122 C();
124 dynamic(); 123 dynamic();
125 F(); 124 F();
126 T(); 125 T();
127 } 126 }
128 } 127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698