Files
sdk/pkg/front_end/testcases/patterns/shared_errors.dart.weak.outline.expect
T
Johnni Winther 36641368bb [cfe] Treat NonNullableByDefault as default in ast-to-text
This changes ast-to-text to mark legacy libraries instead of
non-nullable-by-default libraries.

TEST=existing

Change-Id: Ib01147e4ef48c2c5b2ffc6b23547998344dfdf2e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/307121
Commit-Queue: Johnni Winther <johnniwinther@google.com>
Reviewed-by: Chloe Stefantsova <cstefantsova@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
2023-06-08 06:28:50 +00:00

41 lines
1.2 KiB
Plaintext

library;
import self as self;
import "dart:core" as core;
class Class extends core::Object {
synthetic constructor •() → self::Class
;
get field() → core::int
;
operator >=(self::Class cls) → core::bool
;
operator >(core::int i) → self::Class
;
}
static method argumentTypeNotAssignable(self::Class cls) → dynamic
;
static method relationalPatternOperatorReturnTypeNotAssignableToBool(self::Class cls) → dynamic
;
static method patternTypeMismatchInIrrefutableContext(core::List<core::String> list) → dynamic
;
static method duplicateAssignmentPatternVariable(core::List<core::String> list) → dynamic
;
static method duplicateRecordPatternField(dynamic o) → dynamic
;
static method duplicateRestPattern(dynamic o) → dynamic
;
static method emptyMapPattern(dynamic o) → dynamic
;
static method singleRestPatternInMap(dynamic o) → dynamic
;
static method matchedTypeIsStrictlyNonNullable(core::List<core::int> list) → dynamic
;
static method nonBooleanCondition(core::int i) → dynamic
;
static method refutablePatternInIrrefutableContext(core::int? x) → dynamic
;
static method restPatternNotLastInMap(dynamic o) → dynamic
;
static method restPatternWithSubPatternInMap(dynamic o) → dynamic
;