blob: 430414d92170169e9b168418f32054baf0e32f72 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
field core::int field = 0;
default constructor •() void
: super core::Object::•()
;
get getter() core::int
return 0;
method function() core::int
return 0;
}
static field self::C c = new self::C::•();
static field dynamic function_ref = self::c.function;
static field dynamic function_ref_list = <dynamic>[self::c.function];
static method main() dynamic {}