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

Unified Diff: pkg/compiler/lib/src/resolved_visitor.dart

Issue 1146973002: Rename remaining runtime-error methods from errorX to visitX. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « pkg/compiler/lib/src/resolution/send_structure.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/resolved_visitor.dart
diff --git a/pkg/compiler/lib/src/resolved_visitor.dart b/pkg/compiler/lib/src/resolved_visitor.dart
index 0aa85195de72fe2ae26197efc7c1d3bf05e81885..2459c0534ef5ebfe708c27c3c736ff755c67a374 100644
--- a/pkg/compiler/lib/src/resolved_visitor.dart
+++ b/pkg/compiler/lib/src/resolved_visitor.dart
@@ -412,7 +412,7 @@ class ResolvedSemanticDispatcher<R> extends Object
}
@override
- R errorStaticSetterGet(
+ R visitStaticSetterGet(
Send node,
FunctionElement setter,
ResolvedKindVisitor<R> visitor) {
@@ -420,7 +420,7 @@ class ResolvedSemanticDispatcher<R> extends Object
}
@override
- R errorStaticSetterInvoke(
+ R visitStaticSetterInvoke(
Send node,
FunctionElement setter,
NodeList arguments,
@@ -430,7 +430,7 @@ class ResolvedSemanticDispatcher<R> extends Object
}
@override
- R errorSuperSetterGet(
+ R visitSuperSetterGet(
Send node,
FunctionElement setter,
ResolvedKindVisitor<R> visitor) {
@@ -438,7 +438,7 @@ class ResolvedSemanticDispatcher<R> extends Object
}
@override
- R errorSuperSetterInvoke(
+ R visitSuperSetterInvoke(
Send node,
FunctionElement setter,
NodeList arguments,
@@ -448,7 +448,7 @@ class ResolvedSemanticDispatcher<R> extends Object
}
@override
- R errorTopLevelSetterGet(
+ R visitTopLevelSetterGet(
Send node,
FunctionElement setter,
ResolvedKindVisitor<R> visitor) {
@@ -456,7 +456,7 @@ class ResolvedSemanticDispatcher<R> extends Object
}
@override
- R errorTopLevelSetterInvoke(
+ R visitTopLevelSetterInvoke(
Send node,
FunctionElement setter,
NodeList arguments,
« no previous file with comments | « pkg/compiler/lib/src/resolution/send_structure.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698