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

Unified Diff: pkg/analyzer/test/src/task/strong/checker_test.dart

Issue 3006893002: Refactor fuzzy arrow hints. (Closed)
Patch Set: Reland and refactor fuzzy arrow hints. Created 3 years, 4 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/analyzer/lib/src/task/strong/checker.dart ('k') | pkg/compiler/analysis_options.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/task/strong/checker_test.dart
diff --git a/pkg/analyzer/test/src/task/strong/checker_test.dart b/pkg/analyzer/test/src/task/strong/checker_test.dart
index e67210e7f4c565ad2dfe8239a11c60634c0e76f2..a0227970645f85b18b73761ea254b045c3469d7e 100644
--- a/pkg/analyzer/test/src/task/strong/checker_test.dart
+++ b/pkg/analyzer/test/src/task/strong/checker_test.dart
@@ -489,7 +489,7 @@ void main() {
f1("hello");
dynamic f2 = foo;
(/*info:DYNAMIC_INVOKE*/f2("hello"));
- DynFun f3 = foo;
+ DynFun f3 = /*info:USES_DYNAMIC_AS_BOTTOM*/foo;
(/*info:DYNAMIC_INVOKE*/f3("hello"));
(/*info:DYNAMIC_INVOKE*/f3(42));
StrFun f4 = foo;
@@ -673,7 +673,7 @@ void main() {
/*info:DYNAMIC_INVOKE*/f./*error:UNDEFINED_METHOD*/col(3);
}
{
- A f = new B();
+ A f = /*info:USES_DYNAMIC_AS_BOTTOM*/new B();
int x;
double y;
x = /*info:DYNAMIC_CAST, info:DYNAMIC_INVOKE*/f(3);
@@ -686,7 +686,7 @@ void main() {
/*info:DYNAMIC_INVOKE*/g.col(42.0);
/*info:DYNAMIC_INVOKE*/g.foo(42.0);
/*info:DYNAMIC_INVOKE*/g.x;
- A f = new B();
+ A f = /*info:USES_DYNAMIC_AS_BOTTOM*/new B();
/*info:DYNAMIC_INVOKE*/f./*error:UNDEFINED_METHOD*/col(42.0);
/*info:DYNAMIC_INVOKE*/f./*error:UNDEFINED_METHOD*/foo(42.0);
/*info:DYNAMIC_INVOKE*/f./*error:UNDEFINED_GETTER*/x;
@@ -1062,9 +1062,9 @@ void main() {
await checkFile('''
class A {}
-typedef dynamic Top(dynamic x); // Top of the lattice
+typedef dynamic Top(Null x); // Top of the lattice
typedef dynamic Left(A x); // Left branch
-typedef A Right(dynamic x); // Right branch
+typedef A Right(Null x); // Right branch
typedef A Bottom(A x); // Bottom of the lattice
void main() {
@@ -1123,9 +1123,9 @@ void main() {
await checkFile('''
class A {}
-typedef dynamic BotTop(dynamic x);
+typedef dynamic BotTop(Null x);
typedef dynamic ATop(A x);
-typedef A BotA(dynamic x);
+typedef A BotA(Null x);
typedef A AA(A x);
typedef A TopA(Object x);
typedef dynamic TopTop(Object x);
@@ -3091,7 +3091,7 @@ void main() {
TakesA<int> f;
TakesA<dynamic> g;
TakesA<String> h;
- g = h;
+ g = /*info:USES_DYNAMIC_AS_BOTTOM*/h;
f = /*info:DOWN_CAST_COMPOSITE*/f ?? g;
}
''');
« no previous file with comments | « pkg/analyzer/lib/src/task/strong/checker.dart ('k') | pkg/compiler/analysis_options.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698