Files
sdk/pkg/front_end/testcases/classes.dart.outline.expect
T
Paul Berry 8a92a2a79c Infer the types of initializing formals from the corresponding fields.
This inference is enabled for both strong and non-strong mode, since
it is mandated by the Dart 1.0 spec.

R=ahe@google.com, scheglov@google.com

Review-Url: https://codereview.chromium.org/2908453002 .
2017-05-25 04:47:44 -07:00

21 lines
373 B
Plaintext

library;
import self as self;
import "dart:core" as core;
class A extends core::Object {
final field core::int x;
final field core::int y;
constructor •(core::int y) → void
;
method method() → dynamic
;
}
class B extends self::A {
constructor •(dynamic x) → void
;
method method() → dynamic
;
}
static method main() → dynamic
;