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

Unified Diff: pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart

Issue 2934333002: More dart2js strong mode cleanup. (Closed)
Patch Set: Restore ignore for non-strong mode. 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/compiler/lib/src/resolution/semantic_visitor_mixins.dart
diff --git a/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart b/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
index d46a6ef8c55c932833b4f22d53b8ff47d250b281..669b574e316b3aded50493f9a2615662d840a22b 100644
--- a/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
+++ b/pkg/compiler/lib/src/resolution/semantic_visitor_mixins.dart
@@ -2290,8 +2290,13 @@ abstract class NewBulkMixin<R, A>
}
@override
- R visitUnresolvedClassConstructorInvoke(NewExpression node, Element element,
- ResolutionDartType type, NodeList arguments, Selector selector, A arg) {
+ R visitUnresolvedClassConstructorInvoke(
+ NewExpression node,
+ ErroneousElement element,
+ ResolutionDartType type,
+ NodeList arguments,
+ Selector selector,
+ A arg) {
return bulkHandleNew(node, arg);
}
@@ -4446,7 +4451,7 @@ class TraversalSendMixin<R, A> implements SemanticSendVisitor<R, A> {
@override
R visitUnresolvedClassConstructorInvoke(
NewExpression node,
- Element constructor,
+ ErroneousElement constructor,
ResolutionDartType type,
NodeList arguments,
Selector selector,
@@ -8298,8 +8303,13 @@ abstract class BaseImplementationOfNewMixin<R, A>
}
@override
- R visitUnresolvedClassConstructorInvoke(NewExpression node, Element element,
- ResolutionDartType type, NodeList arguments, Selector selector, A arg) {
+ R visitUnresolvedClassConstructorInvoke(
+ NewExpression node,
+ ErroneousElement element,
+ ResolutionDartType type,
+ NodeList arguments,
+ Selector selector,
+ A arg) {
return handleConstructorInvoke(
node, element, type, arguments, selector.callStructure, arg);
}
« no previous file with comments | « pkg/compiler/lib/src/resolution/semantic_visitor.dart ('k') | pkg/compiler/lib/src/serialization/equivalence.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698