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

Side by Side Diff: pkg/analyzer/lib/src/generated/resolver.dart

Issue 854363005: Remove Element.users support. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 engine.resolver; 5 library engine.resolver;
6 6
7 import "dart:math" as math; 7 import "dart:math" as math;
8 import 'dart:collection'; 8 import 'dart:collection';
9 9
10 import 'package:analyzer/src/generated/utilities_collection.dart'; 10 import 'package:analyzer/src/generated/utilities_collection.dart';
11 import 'package:analyzer/src/generated/visitors.dart';
12 11
13 import 'ast.dart'; 12 import 'ast.dart';
14 import 'constant.dart'; 13 import 'constant.dart';
15 import 'element.dart'; 14 import 'element.dart';
16 import 'element_resolver.dart'; 15 import 'element_resolver.dart';
17 import 'engine.dart'; 16 import 'engine.dart';
18 import 'error.dart'; 17 import 'error.dart';
19 import 'error_verifier.dart'; 18 import 'error_verifier.dart';
20 import 'html.dart' as ht; 19 import 'html.dart' as ht;
21 import 'java_core.dart'; 20 import 'java_core.dart';
(...skipping 15437 matching lines...) Expand 10 before | Expand all | Expand 10 after
15459 * library. 15458 * library.
15460 */ 15459 */
15461 final HashSet<String> members = new HashSet<String>(); 15460 final HashSet<String> members = new HashSet<String>();
15462 15461
15463 /** 15462 /**
15464 * Names of resolved or unresolved class members that are read in the 15463 * Names of resolved or unresolved class members that are read in the
15465 * library. 15464 * library.
15466 */ 15465 */
15467 final HashSet<String> readMembers = new HashSet<String>(); 15466 final HashSet<String> readMembers = new HashSet<String>();
15468 } 15467 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/incremental_resolver.dart ('k') | pkg/analyzer/lib/src/generated/utilities_collection.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698