36641368bb
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>
38 lines
943 B
Plaintext
38 lines
943 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
import "package:expect/expect.dart" as exp;
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
static const field core::String str = #C1;
|
|
static const field core::String var1 = #C2;
|
|
static const field dynamic var2 = #C3;
|
|
static const field core::String var3 = #C3;
|
|
static const field dynamic var4 = #C4;
|
|
static method fn() → dynamic {
|
|
core::String local = "str";
|
|
return local.{core::String::[]}(0){(core::int) → core::String};
|
|
}
|
|
static method fn2() → dynamic {
|
|
try {
|
|
core::String x = #C1.{core::String::[]}(1.{core::int::unary-}(){() → core::int}){(core::int) → core::String};
|
|
}
|
|
on core::RangeError catch(no-exception-var) {
|
|
return 2;
|
|
}
|
|
}
|
|
static method main() → void {
|
|
exp::Expect::equals(#C2, "r");
|
|
exp::Expect::equals(#C3, "s");
|
|
exp::Expect::equals(#C3, "s");
|
|
exp::Expect::equals(#C4, 2);
|
|
}
|
|
|
|
constants {
|
|
#C1 = "str"
|
|
#C2 = "r"
|
|
#C3 = "s"
|
|
#C4 = 2
|
|
}
|