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

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

Issue 1234053002: Add SubclassNode to prepare for optimized queries on ClassWorld. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. 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 | « no previous file | pkg/compiler/lib/src/universe/class_set.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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'serialization/task.dart';
56 import 'ssa/ssa.dart'; 56 import 'ssa/ssa.dart';
57 import 'io/source_file.dart' show SourceFile; 57 import 'io/source_file.dart' show SourceFile;
58 import 'tracer.dart' show Tracer; 58 import 'tracer.dart' show Tracer;
59 import 'tree/tree.dart'; 59 import 'tree/tree.dart';
60 import 'types/types.dart' as ti; 60 import 'types/types.dart' as ti;
61 import 'universe/universe.dart'; 61 import 'universe/universe.dart';
62 import 'universe/class_set.dart';
62 import 'util/characters.dart' show $_; 63 import 'util/characters.dart' show $_;
63 import 'util/uri_extras.dart' as uri_extras show relativize; 64 import 'util/uri_extras.dart' as uri_extras show relativize;
64 import 'util/util.dart'; 65 import 'util/util.dart';
65 66
66 export 'helpers/helpers.dart'; 67 export 'helpers/helpers.dart';
67 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping; 68 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
68 export 'scanner/scannerlib.dart' show isUserDefinableOperator, 69 export 'scanner/scannerlib.dart' show isUserDefinableOperator,
69 isUnaryOperator, 70 isUnaryOperator,
70 isBinaryOperator, 71 isBinaryOperator,
71 isTernaryOperator, 72 isTernaryOperator,
72 isMinusOperator; 73 isMinusOperator;
73 export 'universe/universe.dart' show CallStructure, Selector, TypedSelector; 74 export 'universe/universe.dart' show CallStructure, Selector, TypedSelector;
74 export 'util/util.dart' 75 export 'util/util.dart'
75 show Spannable, 76 show Spannable,
76 CURRENT_ELEMENT_SPANNABLE, 77 CURRENT_ELEMENT_SPANNABLE,
77 NO_LOCATION_SPANNABLE; 78 NO_LOCATION_SPANNABLE;
78 79
79 part 'compiler.dart'; 80 part 'compiler.dart';
80 part 'diagnostic_listener.dart'; 81 part 'diagnostic_listener.dart';
81 part 'enqueue.dart'; 82 part 'enqueue.dart';
82 part 'resolved_visitor.dart'; 83 part 'resolved_visitor.dart';
83 part 'script.dart'; 84 part 'script.dart';
84 part 'typechecker.dart'; 85 part 'typechecker.dart';
85 part 'warnings.dart'; 86 part 'warnings.dart';
86 part 'world.dart'; 87 part 'world.dart';
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/universe/class_set.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698