library; | |
import self as self; | |
import "dart:core" as core; | |
class C extends core::Object { | |
synthetic constructor •() → self::C | |
: super core::Object::•() | |
; | |
set test(core::int v) → void {} | |
get test() → dynamic | |
return 3.14; | |
} | |
static method test() → dynamic { | |
self::C c = new self::C::•(); | |
c.{self::C::test} = 1; | |
c.{self::C::test}{dynamic}; | |
} | |
static method main() → dynamic {} |