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

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

Issue 12794002: Move Options to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/io/options.dart ('k') | tests/compiler/dart2js/mini_parser_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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 'dart:async' show Future; 9 import 'dart:async' show Future;
10 import 'dart:uri' show Uri; 10 import 'dart:uri' show Uri;
11 import 'dart:io';
11 12
12 import '../../../sdk/lib/_internal/compiler/implementation/apiimpl.dart' 13 import '../../../sdk/lib/_internal/compiler/implementation/apiimpl.dart'
13 show Compiler; 14 show Compiler;
14 15
15 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart' 16 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart'
16 as dart2js; 17 as dart2js;
17 18
18 import '../../../sdk/lib/_internal/compiler/implementation/filenames.dart' 19 import '../../../sdk/lib/_internal/compiler/implementation/filenames.dart'
19 show getCurrentDirectory; 20 show getCurrentDirectory;
20 21
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 class MyClass { 97 class MyClass {
97 const MyClass(); 98 const MyClass();
98 99
99 foo(x) { 100 foo(x) {
100 new Expando(); 101 new Expando();
101 return (x - 3) ~/ 2; 102 return (x - 3) ~/ 2;
102 } 103 }
103 } 104 }
104 """, 105 """,
105 }; 106 };
OLDNEW
« no previous file with comments | « sdk/lib/io/options.dart ('k') | tests/compiler/dart2js/mini_parser_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698