| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |