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

Side by Side Diff: pkg/compiler/lib/src/inferrer/node_tracer.dart

Issue 2221893003: pkg/compiler: fix imports (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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
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 library compiler.src.inferrer.node_tracer; 5 library compiler.src.inferrer.node_tracer;
6 6
7 import '../common/names.dart' show Identifiers; 7 import '../common/names.dart' show Identifiers;
8 import '../compiler.dart' show Compiler; 8 import '../compiler.dart' show Compiler;
9 import '../elements/elements.dart'; 9 import '../elements/elements.dart';
10 import '../types/types.dart' show ContainerTypeMask, MapTypeMask; 10 import '../types/types.dart' show ContainerTypeMask, MapTypeMask;
11 import '../util/util.dart' show Setlet; 11 import '../util/util.dart' show Setlet;
12 12 import 'debug.dart' as debug;
13 import 'type_graph_inferrer.dart' show TypeGraphInferrerEngine; 13 import 'type_graph_inferrer.dart' show TypeGraphInferrerEngine;
14 import 'type_graph_nodes.dart'; 14 import 'type_graph_nodes.dart';
15 import 'debug.dart' as debug;
16 15
17 // A set of selectors we know do not escape the elements inside the 16 // A set of selectors we know do not escape the elements inside the
18 // list. 17 // list.
19 Set<String> doesNotEscapeListSet = new Set<String>.from(const <String>[ 18 Set<String> doesNotEscapeListSet = new Set<String>.from(const <String>[
20 // From Object. 19 // From Object.
21 '==', 20 '==',
22 'hashCode', 21 'hashCode',
23 'toString', 22 'toString',
24 'noSuchMethod', 23 'noSuchMethod',
25 'runtimeType', 24 'runtimeType',
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 } 396 }
398 if (isParameterOfListAddingMethod(info.element) || 397 if (isParameterOfListAddingMethod(info.element) ||
399 isParameterOfMapAddingMethod(info.element)) { 398 isParameterOfMapAddingMethod(info.element)) {
400 // These elements are being handled in 399 // These elements are being handled in
401 // [visitDynamicCallSiteTypeInformation]. 400 // [visitDynamicCallSiteTypeInformation].
402 return; 401 return;
403 } 402 }
404 addNewEscapeInformation(info); 403 addNewEscapeInformation(info);
405 } 404 }
406 } 405 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/inferrer/map_tracer.dart ('k') | pkg/compiler/lib/src/inferrer/type_graph_dump.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698