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

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

Issue 694353007: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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) 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 // Test of the graph segmentation algorithm used by deferred loading 5 // Test of the graph segmentation algorithm used by deferred loading
6 // to determine which elements can be deferred and which libraries 6 // to determine which elements can be deferred and which libraries
7 // much be included in the initial download (loaded eagerly). 7 // much be included in the initial download (loaded eagerly).
8 8
9 import 'package:expect/expect.dart'; 9 import 'package:expect/expect.dart';
10 import "package:async_helper/async_helper.dart"; 10 import "package:async_helper/async_helper.dart";
11 import 'memory_source_file_helper.dart'; 11 import 'memory_source_file_helper.dart';
12 import "dart:async"; 12 import "dart:async";
13 13
14 import 'package:compiler/implementation/dart2jslib.dart' 14 import 'package:compiler/src/dart2jslib.dart'
15 as dart2js; 15 as dart2js;
16 16
17 class FakeOutputStream<T> extends EventSink<T> { 17 class FakeOutputStream<T> extends EventSink<T> {
18 void add(T event) {} 18 void add(T event) {}
19 void addError(T event, [StackTrace stackTrace]) {} 19 void addError(T event, [StackTrace stackTrace]) {}
20 void close() {} 20 void close() {}
21 } 21 }
22 22
23 void main() { 23 void main() {
24 Uri script = currentDirectory.resolveUri(Platform.script); 24 Uri script = currentDirectory.resolveUri(Platform.script);
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 void foo1() { 79 void foo1() {
80 lib1.loadLibrary().then((_) => lib2.foo2()); 80 lib1.loadLibrary().then((_) => lib2.foo2());
81 } 81 }
82 """, 82 """,
83 "lib2.dart":""" 83 "lib2.dart":"""
84 library lib2; 84 library lib2;
85 85
86 void foo2() {} 86 void foo2() {}
87 """, 87 """,
88 }; 88 };
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/deferred_mirrors_test.dart ('k') | tests/compiler/dart2js/dump_info_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698