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

Side by Side Diff: dart/tests/compiler/dart2js/mirror_helper_unique_minification_test.dart

Issue 60733003: Version 0.8.10.6 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 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) 2013, the Dart project authors. Please see the AUTHORS file 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 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 "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 import 'dart:async'; 6 import 'dart:async';
7 import "package:async_helper/async_helper.dart"; 7 import "package:async_helper/async_helper.dart";
8 import 'memory_compiler.dart' show compilerFor; 8 import 'memory_compiler.dart' show compilerFor;
9 import '../../../sdk/lib/_internal/compiler/implementation/apiimpl.dart' show 9 import '../../../sdk/lib/_internal/compiler/implementation/apiimpl.dart' show
10 Compiler; 10 Compiler;
11 import 11 import
12 '../../../sdk/lib/_internal/compiler/implementation/dart_backend/dart_backen d.dart' 12 '../../../sdk/lib/_internal/compiler/implementation/dart_backend/dart_backen d.dart'
13 show 13 show
14 DartBackend; 14 DartBackend;
15 import 15 import
16 '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart' 16 '../../../sdk/lib/_internal/compiler/implementation/tree/tree.dart'
17 show 17 show
18 Node; 18 Node, Identifier;
19 import
20 '../../../sdk/lib/_internal/compiler/implementation/mirror_renamer/mirror_re namer.dart'
21 show
22 MirrorRenamer;
19 23
20 main() { 24 main() {
21 testUniqueMinification(); 25 testUniqueMinification();
22 testNoUniqueMinification(); 26 testNoUniqueMinification();
23 } 27 }
24 28
25 Future<Compiler> runCompiler({useMirrorHelperLibrary: false, minify: false}) { 29 Future<Compiler> runCompiler({useMirrorHelperLibrary: false, minify: false}) {
26 List<String> options = ['--output-type=dart']; 30 List<String> options = ['--output-type=dart'];
27 if (minify) { 31 if (minify) {
28 options.add('--minify'); 32 options.add('--minify');
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 noSuchMethod(invocation) { 84 noSuchMethod(invocation) {
81 MirrorSystem.getName(null); 85 MirrorSystem.getName(null);
82 } 86 }
83 } 87 }
84 88
85 main() { 89 main() {
86 new Foo().fisk(); 90 new Foo().fisk();
87 var hest; 91 var hest;
88 } 92 }
89 """}; 93 """};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698