56f46b0659
This changes the CFE expectation test suites to use unsound null safety as default to avoid passing --enable-experiments=no-non-nullable to opt out old test folders. This change removes most test folders from the 'strong' tester, since this now only supports sound null safety, which requires all libraries to be opted in. Instead, the 'weak' tester now runs all test folders. Additionally the 'outline' tester is changed to use unsound null safety so that it call be used on all test folders. The 'fast_strong' tester is removed since it should just be run locally and it can be run by passing an option to the other testers. References to non-existing 'shaker' folder has been removed from testing.json. Change-Id: Ibcc306f7b27d06b9637c205238bc408194f1d062 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/184787 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
340 lines
17 KiB
Plaintext
340 lines
17 KiB
Plaintext
library;
|
|
//
|
|
// Problems in library:
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:28:9: Error: Getter not found: 'staticSetter'.
|
|
// Foo.staticSetter;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:29:13: Error: Getter not found: 'staticSetter'.
|
|
// use(Foo.staticSetter);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:31:9: Error: Setter not found: 'staticConstant'.
|
|
// Foo.staticConstant++;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:32:13: Error: Setter not found: 'staticConstant'.
|
|
// use(Foo.staticConstant++);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:35:9: Error: Setter not found: 'staticFunction'.
|
|
// Foo.staticFunction++;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:36:13: Error: Setter not found: 'staticFunction'.
|
|
// use(Foo.staticFunction++);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:37:9: Error: Setter not found: 'staticGetter'.
|
|
// Foo.staticGetter++;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:38:13: Error: Setter not found: 'staticGetter'.
|
|
// use(Foo.staticGetter++);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:39:9: Error: Getter not found: 'staticSetter'.
|
|
// Foo.staticSetter++;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:40:13: Error: Getter not found: 'staticSetter'.
|
|
// use(Foo.staticSetter++);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:42:11: Error: Setter not found: 'staticConstant'.
|
|
// ++Foo.staticConstant;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:43:15: Error: Setter not found: 'staticConstant'.
|
|
// use(++Foo.staticConstant);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:46:11: Error: Setter not found: 'staticFunction'.
|
|
// ++Foo.staticFunction;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:47:15: Error: Setter not found: 'staticFunction'.
|
|
// use(++Foo.staticFunction);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:48:11: Error: Setter not found: 'staticGetter'.
|
|
// ++Foo.staticGetter;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:49:15: Error: Setter not found: 'staticGetter'.
|
|
// use(++Foo.staticGetter);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:50:11: Error: Getter not found: 'staticSetter'.
|
|
// ++Foo.staticSetter;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:51:15: Error: Getter not found: 'staticSetter'.
|
|
// use(++Foo.staticSetter);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:61:9: Error: Getter not found: 'staticSetter'.
|
|
// Foo.staticSetter();
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:62:13: Error: Getter not found: 'staticSetter'.
|
|
// use(Foo.staticSetter());
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:64:9: Error: Setter not found: 'staticConstant'.
|
|
// Foo.staticConstant = 87;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:65:13: Error: Setter not found: 'staticConstant'.
|
|
// use(Foo.staticConstant = 87);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:68:9: Error: Setter not found: 'staticFunction'.
|
|
// Foo.staticFunction = 87;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:69:13: Error: Setter not found: 'staticFunction'.
|
|
// use(Foo.staticFunction = 87);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:70:9: Error: Setter not found: 'staticGetter'.
|
|
// Foo.staticGetter = 87;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:71:13: Error: Setter not found: 'staticGetter'.
|
|
// use(Foo.staticGetter = 87);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:75:9: Error: Setter not found: 'staticConstant'.
|
|
// Foo.staticConstant ??= 87;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:76:13: Error: Setter not found: 'staticConstant'.
|
|
// use(Foo.staticConstant ??= 87);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:79:9: Error: Setter not found: 'staticFunction'.
|
|
// Foo.staticFunction ??= 87;
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:80:13: Error: Setter not found: 'staticFunction'.
|
|
// use(Foo.staticFunction ??= 87);
|
|
// ^^^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:81:9: Error: Setter not found: 'staticGetter'.
|
|
// Foo.staticGetter ??= 87;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:82:13: Error: Setter not found: 'staticGetter'.
|
|
// use(Foo.staticGetter ??= 87);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:83:9: Error: Getter not found: 'staticSetter'.
|
|
// Foo.staticSetter ??= 87;
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:84:13: Error: Getter not found: 'staticSetter'.
|
|
// use(Foo.staticSetter ??= 87);
|
|
// ^^^^^^^^^^^^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:53:23: Error: The method 'call' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// Foo.staticConstant();
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:54:27: Error: The method 'call' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// use(Foo.staticConstant());
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:55:20: Error: The method 'call' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// Foo.staticField();
|
|
// ^
|
|
//
|
|
// pkg/front_end/testcases/rasta/static.dart:56:24: Error: The method 'call' isn't defined for the class 'int'.
|
|
// Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
// use(Foo.staticField());
|
|
// ^
|
|
//
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
class Foo extends core::Object {
|
|
static const field core::int* staticConstant = #C1;
|
|
static field core::int* staticField = 42;
|
|
synthetic constructor •() → self::Foo*
|
|
: super core::Object::•()
|
|
;
|
|
static method staticFunction() → dynamic {}
|
|
static get staticGetter() → dynamic
|
|
return null;
|
|
static set staticSetter(dynamic _) → void {}
|
|
abstract member-signature get _identityHashCode() → core::int*; -> core::Object::_identityHashCode
|
|
abstract member-signature method _instanceOf(dynamic instantiatorTypeArguments, dynamic functionTypeArguments, dynamic type) → core::bool*; -> core::Object::_instanceOf
|
|
abstract member-signature method _simpleInstanceOf(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOf
|
|
abstract member-signature method _simpleInstanceOfTrue(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOfTrue
|
|
abstract member-signature method _simpleInstanceOfFalse(dynamic type) → core::bool*; -> core::Object::_simpleInstanceOfFalse
|
|
abstract member-signature operator ==(dynamic other) → core::bool*; -> core::Object::==
|
|
abstract member-signature get hashCode() → core::int*; -> core::Object::hashCode
|
|
abstract member-signature method toString() → core::String*; -> core::Object::toString
|
|
abstract member-signature method noSuchMethod(core::Invocation* invocation) → dynamic; -> core::Object::noSuchMethod
|
|
abstract member-signature get runtimeType() → core::Type*; -> core::Object::runtimeType
|
|
}
|
|
static method use(dynamic x) → dynamic {
|
|
if(x.{core::Object::==}(new core::DateTime::now().{core::DateTime::millisecondsSinceEpoch}))
|
|
throw "Shouldn't happen";
|
|
}
|
|
static method main() → dynamic {
|
|
try {
|
|
#C1;
|
|
self::use(#C1);
|
|
self::Foo::staticField;
|
|
self::use(self::Foo::staticField);
|
|
#C2;
|
|
self::use(#C2);
|
|
self::Foo::staticGetter;
|
|
self::use(self::Foo::staticGetter);
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:28:9: Error: Getter not found: 'staticSetter'.
|
|
Foo.staticSetter;
|
|
^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:29:13: Error: Getter not found: 'staticSetter'.
|
|
use(Foo.staticSetter);
|
|
^^^^^^^^^^^^");
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:31:9: Error: Setter not found: 'staticConstant'.
|
|
Foo.staticConstant++;
|
|
^^^^^^^^^^^^^^";
|
|
self::use(let final core::int* #t1 = #C1 in let final dynamic #t2 = invalid-expression "pkg/front_end/testcases/rasta/static.dart:32:13: Error: Setter not found: 'staticConstant'.
|
|
use(Foo.staticConstant++);
|
|
^^^^^^^^^^^^^^" in #t1);
|
|
self::Foo::staticField = self::Foo::staticField.{core::num::+}(1);
|
|
self::use(let final core::int* #t3 = self::Foo::staticField in let final core::int* #t4 = self::Foo::staticField = #t3.{core::num::+}(1) in #t3);
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:35:9: Error: Setter not found: 'staticFunction'.
|
|
Foo.staticFunction++;
|
|
^^^^^^^^^^^^^^";
|
|
self::use(let final () →* dynamic #t5 = #C2 in let final dynamic #t6 = invalid-expression "pkg/front_end/testcases/rasta/static.dart:36:13: Error: Setter not found: 'staticFunction'.
|
|
use(Foo.staticFunction++);
|
|
^^^^^^^^^^^^^^" in #t5);
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:37:9: Error: Setter not found: 'staticGetter'.
|
|
Foo.staticGetter++;
|
|
^^^^^^^^^^^^";
|
|
self::use(let final dynamic #t7 = self::Foo::staticGetter in let final dynamic #t8 = invalid-expression "pkg/front_end/testcases/rasta/static.dart:38:13: Error: Setter not found: 'staticGetter'.
|
|
use(Foo.staticGetter++);
|
|
^^^^^^^^^^^^" in #t7);
|
|
self::Foo::staticSetter = invalid-expression "pkg/front_end/testcases/rasta/static.dart:39:9: Error: Getter not found: 'staticSetter'.
|
|
Foo.staticSetter++;
|
|
^^^^^^^^^^^^".+(1);
|
|
self::use(let final dynamic #t9 = invalid-expression "pkg/front_end/testcases/rasta/static.dart:40:13: Error: Getter not found: 'staticSetter'.
|
|
use(Foo.staticSetter++);
|
|
^^^^^^^^^^^^" in let final dynamic #t10 = self::Foo::staticSetter = #t9.+(1) in #t9);
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:42:11: Error: Setter not found: 'staticConstant'.
|
|
++Foo.staticConstant;
|
|
^^^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:43:15: Error: Setter not found: 'staticConstant'.
|
|
use(++Foo.staticConstant);
|
|
^^^^^^^^^^^^^^");
|
|
self::Foo::staticField = self::Foo::staticField.{core::num::+}(1);
|
|
self::use(self::Foo::staticField = self::Foo::staticField.{core::num::+}(1));
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:46:11: Error: Setter not found: 'staticFunction'.
|
|
++Foo.staticFunction;
|
|
^^^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:47:15: Error: Setter not found: 'staticFunction'.
|
|
use(++Foo.staticFunction);
|
|
^^^^^^^^^^^^^^");
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:48:11: Error: Setter not found: 'staticGetter'.
|
|
++Foo.staticGetter;
|
|
^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:49:15: Error: Setter not found: 'staticGetter'.
|
|
use(++Foo.staticGetter);
|
|
^^^^^^^^^^^^");
|
|
self::Foo::staticSetter = invalid-expression "pkg/front_end/testcases/rasta/static.dart:50:11: Error: Getter not found: 'staticSetter'.
|
|
++Foo.staticSetter;
|
|
^^^^^^^^^^^^".+(1);
|
|
self::use(self::Foo::staticSetter = invalid-expression "pkg/front_end/testcases/rasta/static.dart:51:15: Error: Getter not found: 'staticSetter'.
|
|
use(++Foo.staticSetter);
|
|
^^^^^^^^^^^^".+(1));
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:53:23: Error: The method 'call' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
Foo.staticConstant();
|
|
^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:54:27: Error: The method 'call' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
use(Foo.staticConstant());
|
|
^");
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:55:20: Error: The method 'call' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
Foo.staticField();
|
|
^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:56:24: Error: The method 'call' isn't defined for the class 'int'.
|
|
Try correcting the name to the name of an existing method, or defining a method named 'call'.
|
|
use(Foo.staticField());
|
|
^");
|
|
self::Foo::staticFunction();
|
|
self::use(self::Foo::staticFunction());
|
|
self::Foo::staticGetter.call();
|
|
self::use(self::Foo::staticGetter.call());
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:61:9: Error: Getter not found: 'staticSetter'.
|
|
Foo.staticSetter();
|
|
^^^^^^^^^^^^".call();
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:62:13: Error: Getter not found: 'staticSetter'.
|
|
use(Foo.staticSetter());
|
|
^^^^^^^^^^^^".call());
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:64:9: Error: Setter not found: 'staticConstant'.
|
|
Foo.staticConstant = 87;
|
|
^^^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:65:13: Error: Setter not found: 'staticConstant'.
|
|
use(Foo.staticConstant = 87);
|
|
^^^^^^^^^^^^^^");
|
|
self::Foo::staticField = 87;
|
|
self::use(self::Foo::staticField = 87);
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:68:9: Error: Setter not found: 'staticFunction'.
|
|
Foo.staticFunction = 87;
|
|
^^^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:69:13: Error: Setter not found: 'staticFunction'.
|
|
use(Foo.staticFunction = 87);
|
|
^^^^^^^^^^^^^^");
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:70:9: Error: Setter not found: 'staticGetter'.
|
|
Foo.staticGetter = 87;
|
|
^^^^^^^^^^^^";
|
|
self::use(invalid-expression "pkg/front_end/testcases/rasta/static.dart:71:13: Error: Setter not found: 'staticGetter'.
|
|
use(Foo.staticGetter = 87);
|
|
^^^^^^^^^^^^");
|
|
self::Foo::staticSetter = 87;
|
|
self::use(self::Foo::staticSetter = 87);
|
|
(#C1).{core::num::==}(null) ?{dynamic} invalid-expression "pkg/front_end/testcases/rasta/static.dart:75:9: Error: Setter not found: 'staticConstant'.
|
|
Foo.staticConstant ??= 87;
|
|
^^^^^^^^^^^^^^" : null;
|
|
self::use(let final core::int* #t11 = #C1 in #t11.{core::num::==}(null) ?{dynamic} invalid-expression "pkg/front_end/testcases/rasta/static.dart:76:13: Error: Setter not found: 'staticConstant'.
|
|
use(Foo.staticConstant ??= 87);
|
|
^^^^^^^^^^^^^^" : #t11);
|
|
self::Foo::staticField.{core::num::==}(null) ?{core::int*} self::Foo::staticField = 87 : null;
|
|
self::use(let final core::int* #t12 = self::Foo::staticField in #t12.{core::num::==}(null) ?{core::int*} self::Foo::staticField = 87 : #t12);
|
|
(#C2).{core::Object::==}(null) ?{dynamic} invalid-expression "pkg/front_end/testcases/rasta/static.dart:79:9: Error: Setter not found: 'staticFunction'.
|
|
Foo.staticFunction ??= 87;
|
|
^^^^^^^^^^^^^^" : null;
|
|
self::use(let final () →* dynamic #t13 = #C2 in #t13.{core::Object::==}(null) ?{dynamic} invalid-expression "pkg/front_end/testcases/rasta/static.dart:80:13: Error: Setter not found: 'staticFunction'.
|
|
use(Foo.staticFunction ??= 87);
|
|
^^^^^^^^^^^^^^" : #t13);
|
|
self::Foo::staticGetter.{core::Object::==}(null) ?{dynamic} invalid-expression "pkg/front_end/testcases/rasta/static.dart:81:9: Error: Setter not found: 'staticGetter'.
|
|
Foo.staticGetter ??= 87;
|
|
^^^^^^^^^^^^" : null;
|
|
self::use(let final dynamic #t14 = self::Foo::staticGetter in #t14.{core::Object::==}(null) ?{dynamic} invalid-expression "pkg/front_end/testcases/rasta/static.dart:82:13: Error: Setter not found: 'staticGetter'.
|
|
use(Foo.staticGetter ??= 87);
|
|
^^^^^^^^^^^^" : #t14);
|
|
invalid-expression "pkg/front_end/testcases/rasta/static.dart:83:9: Error: Getter not found: 'staticSetter'.
|
|
Foo.staticSetter ??= 87;
|
|
^^^^^^^^^^^^".{core::Object::==}(null) ?{dynamic} self::Foo::staticSetter = 87 : null;
|
|
self::use(let final dynamic #t15 = invalid-expression "pkg/front_end/testcases/rasta/static.dart:84:13: Error: Getter not found: 'staticSetter'.
|
|
use(Foo.staticSetter ??= 87);
|
|
^^^^^^^^^^^^" in #t15.{core::Object::==}(null) ?{dynamic} self::Foo::staticSetter = 87 : #t15);
|
|
}
|
|
on core::NoSuchMethodError* catch(no-exception-var) {
|
|
}
|
|
}
|
|
|
|
constants {
|
|
#C1 = 42
|
|
#C2 = tearoff self::Foo::staticFunction
|
|
}
|