-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…2984) Update existing and add new tests checking nnbd static errors
- Loading branch information
Showing
11 changed files
with
230 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion It is an error to derive a mixin from a class declaration which | ||
/// contains an instance variable with a potentially non-nullable type and no | ||
/// initializer expression unless the variable is marked with the `late` | ||
/// modifier. | ||
/// | ||
/// @description Check that it is an error for a mixin class to contain an | ||
/// instance variable with a potentially non-nullable type and no initializer | ||
/// expression. | ||
/// @author [email protected] | ||
mixin class C { | ||
Object instance; | ||
// ^^^^^^^^ | ||
// [analyzer] unspecified | ||
// [cfe] unspecified | ||
} | ||
|
||
main() { | ||
print(C); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion It is an error to derive a mixin from a class declaration which | ||
/// contains an instance variable with a potentially non-nullable type and no | ||
/// initializer expression unless the variable is marked with the `late` | ||
/// modifier. | ||
/// | ||
/// @description Check that it is not an error for a mixin class to contain an | ||
/// instance variable with a potentially non-nullable type and no initializer | ||
/// expression but this variable is marked `late`. | ||
/// @author [email protected] | ||
mixin class C { | ||
late Object instance; | ||
} | ||
|
||
main() { | ||
print(C); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
/// expression throw e is not assignable to Object | ||
/// @author [email protected] | ||
|
||
class A { | ||
} | ||
|
||
|
@@ -55,5 +54,21 @@ void test6<T extends Function?>(T x) { | |
// [cfe] unspecified | ||
} | ||
|
||
extension type ET(Object? _) {} | ||
|
||
void test7(ET x) { | ||
throw x; | ||
// ^ | ||
// [analyzer] unspecified | ||
// [cfe] unspecified | ||
} | ||
|
||
main() { | ||
print(test1); | ||
print(test2); | ||
print(test3); | ||
print(test4); | ||
print(test5); | ||
print(test6); | ||
print(test7); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion It is not an error for the body of a `late` field to reference | ||
/// `this`. | ||
/// | ||
/// @description Check that it is not an error for the body of a `late` field to | ||
/// reference `this`. | ||
/// @author [email protected] | ||
// Requirements=nnbd-strong | ||
|
||
import "../../Utils/expect.dart"; | ||
|
||
class A { | ||
int one = 1; | ||
} | ||
|
||
class C extends A { | ||
int two = 2; | ||
late Function p1 = () => this.one; | ||
late final p2 = () { | ||
return this.two; | ||
}; | ||
} | ||
|
||
main() { | ||
Expect.equals(1, new C().p1()); | ||
Expect.equals(2, new C().p2()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,6 @@ | |
/// @author [email protected] | ||
/// @issue 39661 | ||
|
||
import "dart:async"; | ||
|
||
class C { | ||
static void sTest() async { | ||
late int i = await 42; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,35 +2,34 @@ | |
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion It is not a compile time error to write to a final variable if | ||
/// that variable is declared late and does not have an initializer. | ||
/// @assertion It is not a compile time error to write to a `final` non-local or | ||
/// instance variable if that variable is declared `late` and does not have an | ||
/// initializer. | ||
/// | ||
/// @description Check that it is not a compile time error to write to a final | ||
/// variable if that variable is declared late and does not have an initializer. | ||
/// @description Check that it is not a compile time error to write to a | ||
/// non-local `final` variable if that variable is declared `late` and does not | ||
/// have an initializer. | ||
/// @author [email protected] | ||
/// @issue 39684 | ||
// Requirements=nnbd-strong | ||
import "../../Utils/expect.dart"; | ||
|
||
late final g; | ||
import "../../Utils/expect.dart"; | ||
|
||
class C { | ||
static late final s; | ||
late final v; | ||
} | ||
late final g; | ||
|
||
main() { | ||
late final l; | ||
class C { | ||
static late final s; | ||
late final v; | ||
} | ||
|
||
g = "Lily"; | ||
C.s = "was"; | ||
C c = new C(); | ||
c.v = "here"; | ||
l = "Run, Forrest, run"; | ||
main() { | ||
g = "Lily"; | ||
C.s = "was"; | ||
C c = new C(); | ||
c.v = "here"; | ||
|
||
Expect.equals("Lily", g); | ||
Expect.equals("was", C.s); | ||
Expect.equals("here", c.v); | ||
Expect.equals("Run, Forrest, run", l); | ||
} | ||
Expect.equals("Lily", g); | ||
Expect.equals("was", C.s); | ||
Expect.equals("here", c.v); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,18 @@ | |
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion It is not a compile time error to write to a final variable if | ||
/// that variable is declared late and does not have an initializer. | ||
/// @assertion It is not a compile time error to write to a `final` non-local or | ||
/// instance variable if that variable is declared `late` and does not have an | ||
/// initializer. | ||
/// | ||
/// @description Check that it is a runtime error to write to a final variable | ||
/// when that variable is declared late but has been written to already | ||
/// @description Check that it is a runtime error to write to a non-local | ||
/// `final` variable when that variable is declared `late` but has been written | ||
/// to already | ||
/// @author [email protected] | ||
/// @issue 39684 | ||
// Requirements=nnbd-strong | ||
|
||
import "../../Utils/expect.dart"; | ||
|
||
late final g; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion If the static type of `e` is `void`, the expression `await e` is | ||
/// a compile-time error. | ||
/// | ||
/// @description Check that it is a compile-time error if in a `await e` | ||
/// expression the static type of `e` is `void`. | ||
/// @author [email protected] | ||
void foo() {} | ||
|
||
main() async { | ||
void e = 0; | ||
await e; | ||
// ^ | ||
// [analyzer] unspecified | ||
// [cfe] unspecified | ||
await foo(); | ||
// ^^^ | ||
// [analyzer] unspecified | ||
// [cfe] unspecified | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion Let `C` be a type literal denoting a class, mixin, or extension. | ||
/// It is a warning to use a null aware member access with receiver `C`. | ||
/// | ||
/// @description Check that it is a warning to use a null aware member access | ||
/// with a type literal. | ||
/// @author [email protected] | ||
class C { | ||
static void test() {} | ||
} | ||
|
||
mixin M { | ||
static void test() {} | ||
} | ||
|
||
enum E { | ||
e0; | ||
static void test() {} | ||
} | ||
|
||
class A {} | ||
|
||
extension Ext on A { | ||
static void test() {} | ||
} | ||
|
||
extension type ET(int _) { | ||
static void test() {} | ||
} | ||
|
||
main() { | ||
C?.test(); | ||
// ^^ | ||
// [analyzer] unspecified | ||
M?.test(); | ||
// ^^ | ||
// [analyzer] unspecified | ||
E?.test(); | ||
// ^^ | ||
// [analyzer] unspecified | ||
Ext?.test(); | ||
// ^^ | ||
// [analyzer] unspecified | ||
ET?.test(); | ||
// ^^ | ||
// [analyzer] unspecified | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
/// @assertion It is no longer a warning to override a method which has a | ||
/// default value for a parameter with a method with a different default value | ||
/// for the corresponding parameter. | ||
/// | ||
/// @description Check that it is not a warning to override a method which has a | ||
/// default value for a parameter with a method with a different default value | ||
/// for the corresponding parameter. | ||
/// @author [email protected] | ||
import '../../Utils/expect.dart'; | ||
|
||
class A { | ||
int foo([int x = 1]) => x; | ||
int bar({int x = 1}) => x; | ||
} | ||
|
||
class C extends A { | ||
int foo([int x = 2]) => x; | ||
int bar({int x = 2}) => x; | ||
} | ||
|
||
main() { | ||
Expect.equals(2, C().foo()); | ||
Expect.equals(2, C().bar()); | ||
} |