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

Unified Diff: pkg/front_end/lib/src/fasta/type_inference/dependency_collector.dart

Issue 2948773002: Rename "field" -> "accessor" in several type inference methods. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/src/fasta/type_inference/dependency_collector.dart
diff --git a/pkg/front_end/lib/src/fasta/type_inference/dependency_collector.dart b/pkg/front_end/lib/src/fasta/type_inference/dependency_collector.dart
index 5e331a8b5b16d8a0cf2669e9459125ead3391532..43a81384f147814d195bc739fea987abbb092a86 100644
--- a/pkg/front_end/lib/src/fasta/type_inference/dependency_collector.dart
+++ b/pkg/front_end/lib/src/fasta/type_inference/dependency_collector.dart
@@ -22,12 +22,12 @@ abstract class DependencyCollector {
/// can be expressed without the need to reference private data structures in
/// the shadow hierarchy.
abstract class DependencyCollectorImpl extends DependencyCollector {
- List<FieldNode> dependencies = [];
+ List<AccessorNode> dependencies = [];
bool isImmediatelyEvident = true;
- void recordDependency(FieldNode fieldNode) {
- dependencies.add(fieldNode);
+ void recordDependency(AccessorNode accessorNode) {
+ dependencies.add(accessorNode);
}
void recordNotImmediatelyEvident(int fileOffset) {

Powered by Google App Engine
This is Rietveld 408576698