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

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

Issue 1192103002: Support serialization of the compiler backbone. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Handle (bypass) external const constructors. 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
« no previous file with comments | « pkg/compiler/lib/src/constants/expressions.dart ('k') | pkg/compiler/lib/src/dart_types.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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; 45 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask;
46 import 'native/native.dart' as native; 46 import 'native/native.dart' as native;
47 import 'ordered_typeset.dart'; 47 import 'ordered_typeset.dart';
48 import 'patch_parser.dart'; 48 import 'patch_parser.dart';
49 import 'resolution/class_members.dart' show MembersCreator; 49 import 'resolution/class_members.dart' show MembersCreator;
50 import 'resolution/resolution.dart'; 50 import 'resolution/resolution.dart';
51 import 'resolution/semantic_visitor.dart'; 51 import 'resolution/semantic_visitor.dart';
52 import 'resolution/send_structure.dart'; 52 import 'resolution/send_structure.dart';
53 import 'resolution/operators.dart' as op; 53 import 'resolution/operators.dart' as op;
54 import 'scanner/scannerlib.dart'; 54 import 'scanner/scannerlib.dart';
55 import 'serialization/task.dart';
55 import 'ssa/ssa.dart'; 56 import 'ssa/ssa.dart';
56 import 'io/source_file.dart' show SourceFile; 57 import 'io/source_file.dart' show SourceFile;
57 import 'tracer.dart' show Tracer; 58 import 'tracer.dart' show Tracer;
58 import 'tree/tree.dart'; 59 import 'tree/tree.dart';
59 import 'types/types.dart' as ti; 60 import 'types/types.dart' as ti;
60 import 'universe/universe.dart'; 61 import 'universe/universe.dart';
61 import 'util/characters.dart' show $_; 62 import 'util/characters.dart' show $_;
62 import 'util/uri_extras.dart' as uri_extras show relativize; 63 import 'util/uri_extras.dart' as uri_extras show relativize;
63 import 'util/util.dart'; 64 import 'util/util.dart';
64 65
(...skipping 11 matching lines...) Expand all
76 NO_LOCATION_SPANNABLE; 77 NO_LOCATION_SPANNABLE;
77 78
78 part 'compiler.dart'; 79 part 'compiler.dart';
79 part 'diagnostic_listener.dart'; 80 part 'diagnostic_listener.dart';
80 part 'enqueue.dart'; 81 part 'enqueue.dart';
81 part 'resolved_visitor.dart'; 82 part 'resolved_visitor.dart';
82 part 'script.dart'; 83 part 'script.dart';
83 part 'typechecker.dart'; 84 part 'typechecker.dart';
84 part 'warnings.dart'; 85 part 'warnings.dart';
85 part 'world.dart'; 86 part 'world.dart';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/constants/expressions.dart ('k') | pkg/compiler/lib/src/dart_types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698