Index: pkg/analyzer/test/src/task/dart_test.dart |
diff --git a/pkg/analyzer/test/src/task/dart_test.dart b/pkg/analyzer/test/src/task/dart_test.dart |
index 64901f945e7084be3b1d31949c38dee49cab9129..75d799de04c0805851a87661ca82989ce2a352db 100644 |
--- a/pkg/analyzer/test/src/task/dart_test.dart |
+++ b/pkg/analyzer/test/src/task/dart_test.dart |
@@ -5318,19 +5318,19 @@ var tau = piFirst ? pi * 2 : 6.28; |
InterfaceType intType = context.typeProvider.intType; |
InterfaceType stringType = context.typeProvider.stringType; |
- DartType bottomType = context.typeProvider.bottomType; |
+ DartType nullType = context.typeProvider.nullType; |
DartType dynamicType = context.typeProvider.dynamicType; |
assertVariableDeclarationTypes( |
- AstFinder.getTopLevelVariable(unit, "x"), dynamicType, bottomType); |
+ AstFinder.getTopLevelVariable(unit, "x"), dynamicType, nullType); |
assertVariableDeclarationTypes( |
AstFinder.getTopLevelVariable(unit, "y"), intType, intType); |
assertVariableDeclarationTypes( |
- AstFinder.getFieldInClass(unit, "A", "x"), dynamicType, bottomType); |
+ AstFinder.getFieldInClass(unit, "A", "x"), dynamicType, nullType); |
assertVariableDeclarationTypes( |
AstFinder.getFieldInClass(unit, "A", "y"), intType, intType); |
assertVariableDeclarationTypes( |
- AstFinder.getFieldInClass(unit, "A", "x2"), dynamicType, bottomType); |
+ AstFinder.getFieldInClass(unit, "A", "x2"), dynamicType, nullType); |
assertVariableDeclarationTypes( |
AstFinder.getFieldInClass(unit, "A", "y2"), intType, intType); |