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

Side by Side Diff: pkg/compiler/lib/src/dart2jslib.dart

Issue 830703004: Emit to StreamCodeOutput instead of CodeBuffer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 5 years, 11 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 | « pkg/compiler/lib/src/dart2js.dart ('k') | pkg/compiler/lib/src/deferred_load.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 library dart2js; 5 library dart2js;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection' show Queue; 8 import 'dart:collection' show Queue;
9 import 'dart:profiler' show 9 import 'dart:profiler' show
10 UserTag; 10 UserTag;
(...skipping 29 matching lines...) Expand all
40 LibraryLoaderTask, 40 LibraryLoaderTask,
41 LoadedLibraries; 41 LoadedLibraries;
42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; 42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
43 import 'native/native.dart' as native; 43 import 'native/native.dart' as native;
44 import 'ordered_typeset.dart'; 44 import 'ordered_typeset.dart';
45 import 'patch_parser.dart'; 45 import 'patch_parser.dart';
46 import 'resolution/class_members.dart' show MembersCreator; 46 import 'resolution/class_members.dart' show MembersCreator;
47 import 'resolution/resolution.dart'; 47 import 'resolution/resolution.dart';
48 import 'scanner/scannerlib.dart'; 48 import 'scanner/scannerlib.dart';
49 import 'ssa/ssa.dart'; 49 import 'ssa/ssa.dart';
50 import 'source_file.dart' show SourceFile; 50 import 'io/source_file.dart' show SourceFile;
51 import 'tracer.dart' show Tracer; 51 import 'tracer.dart' show Tracer;
52 import 'tree/tree.dart'; 52 import 'tree/tree.dart';
53 import 'types/types.dart' as ti; 53 import 'types/types.dart' as ti;
54 import 'universe/universe.dart'; 54 import 'universe/universe.dart';
55 import 'util/characters.dart' show $_; 55 import 'util/characters.dart' show $_;
56 import 'util/uri_extras.dart' as uri_extras show relativize; 56 import 'util/uri_extras.dart' as uri_extras show relativize;
57 import 'util/util.dart'; 57 import 'util/util.dart';
58 import 'dart_backend/dart_backend.dart'; 58 import 'dart_backend/dart_backend.dart';
59 59
60 export 'helpers/helpers.dart'; 60 export 'helpers/helpers.dart';
(...skipping 13 matching lines...) Expand all
74 part 'compiler.dart'; 74 part 'compiler.dart';
75 part 'constant_system.dart'; 75 part 'constant_system.dart';
76 part 'constant_system_dart.dart'; 76 part 'constant_system_dart.dart';
77 part 'diagnostic_listener.dart'; 77 part 'diagnostic_listener.dart';
78 part 'enqueue.dart'; 78 part 'enqueue.dart';
79 part 'resolved_visitor.dart'; 79 part 'resolved_visitor.dart';
80 part 'script.dart'; 80 part 'script.dart';
81 part 'typechecker.dart'; 81 part 'typechecker.dart';
82 part 'warnings.dart'; 82 part 'warnings.dart';
83 part 'world.dart'; 83 part 'world.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/dart2js.dart ('k') | pkg/compiler/lib/src/deferred_load.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698