fe3f87f192
The original CL: https://dart-review.googlesource.com/c/sdk/+/51840 Bug: http://dartbug.com/28434 Change-Id: I0812ef4223337f5bf72218dfac0f26f76a6b9df1 Reviewed-on: https://dart-review.googlesource.com/52449 Commit-Queue: Dmitry Stefantsov <dmitryas@google.com> Reviewed-by: Peter von der Ahé <ahe@google.com> Reviewed-by: Jenny Messerly <jmesserly@google.com>
25 lines
642 B
Plaintext
25 lines
642 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
typedef hest_t = ({named: dynamic}) → dynamic;
|
|
class Bar extends core::Object {
|
|
const constructor •() → void
|
|
;
|
|
const constructor named(dynamic x) → void
|
|
;
|
|
}
|
|
class Baz extends core::Object {
|
|
constructor •(dynamic constructorFormal) → void
|
|
;
|
|
static factory bazFactory(dynamic factoryFormal) → self::Baz
|
|
;
|
|
method fisk(dynamic formal1, dynamic formal2, dynamic formal3, dynamic formal4, [dynamic optional]) → dynamic
|
|
;
|
|
method hest({dynamic named}) → dynamic
|
|
;
|
|
}
|
|
static const field core::int foo;
|
|
static method main() → dynamic
|
|
;
|