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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/use_unused_api.dart

Issue 304153014: Remove element from DynamicType. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix infinite loop. Created 6 years, 6 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
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 /// This file use methods that aren't used by dart2js.dart, but that we wish to 5 /// This file use methods that aren't used by dart2js.dart, but that we wish to
6 /// keep anyway. This might be general API that isn't currently in use, 6 /// keep anyway. This might be general API that isn't currently in use,
7 /// debugging aids, or API only used for testing (see TODO below). 7 /// debugging aids, or API only used for testing (see TODO below).
8 8
9 library dart2js.use_unused_api; 9 library dart2js.use_unused_api;
10 10
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 // most cases, such API can be moved to a test library. 193 // most cases, such API can be moved to a test library.
194 dart2jslib.World world = null; 194 dart2jslib.World world = null;
195 dart2jslib.Compiler compiler = null; 195 dart2jslib.Compiler compiler = null;
196 compiler.currentlyInUserCode(); 196 compiler.currentlyInUserCode();
197 type_graph_inferrer.TypeGraphInferrer typeGraphInferrer = null; 197 type_graph_inferrer.TypeGraphInferrer typeGraphInferrer = null;
198 source_file_provider.SourceFileProvider sourceFileProvider = null; 198 source_file_provider.SourceFileProvider sourceFileProvider = null;
199 world.hasAnyUserDefinedGetter(null); 199 world.hasAnyUserDefinedGetter(null);
200 compiler.importHelperLibrary(null); 200 compiler.importHelperLibrary(null);
201 typeGraphInferrer.getCallersOf(null); 201 typeGraphInferrer.getCallersOf(null);
202 dart_types.Types.sorted(null); 202 dart_types.Types.sorted(null);
203 new dart_types.Types(compiler, null).copy(compiler); 203 new dart_types.Types(compiler).copy(compiler);
204 new universe.TypedSelector.subclass(null, null); 204 new universe.TypedSelector.subclass(null, null);
205 new universe.TypedSelector.subtype(null, null); 205 new universe.TypedSelector.subtype(null, null);
206 new universe.TypedSelector.exact(null, null); 206 new universe.TypedSelector.exact(null, null);
207 sourceFileProvider.readStringFromUri(null); 207 sourceFileProvider.readStringFromUri(null);
208 } 208 }
209 209
210 useElements(elements.ClassElement e, elements.Name n) { 210 useElements(elements.ClassElement e, elements.Name n) {
211 e.lookupClassMember(null); 211 e.lookupClassMember(null);
212 e.lookupInterfaceMember(null); 212 e.lookupInterfaceMember(null);
213 n.isAccessibleFrom(null); 213 n.isAccessibleFrom(null);
(...skipping 11 matching lines...) Expand all
225 ..visitExpression(null) 225 ..visitExpression(null)
226 ..visitFunctionDefinition(null) 226 ..visitFunctionDefinition(null)
227 ..visitInvokeStatic(null) 227 ..visitInvokeStatic(null)
228 ..visitLetCont(null) 228 ..visitLetCont(null)
229 ..visitNode(null) 229 ..visitNode(null)
230 ..visitParameter(null); 230 ..visitParameter(null);
231 task 231 task
232 ..hasIr(null) 232 ..hasIr(null)
233 ..getIr(null); 233 ..getIr(null);
234 } 234 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/types/union_type_mask.dart ('k') | sdk/lib/_internal/lib/js_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698