blob: b7006b5833159c4deac2e75a81bd5c0e72db10c1 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
field dynamic y = null;
synthetic constructor •() void
: super core::Object::•()
;
set x(dynamic value) void {}
method test() void {
this.{self::C::x} = null;
this.{self::C::x} = null;
this.{self::C::y} = null;
this.{self::C::y} = null;
}
}
static method test(self::C c, dynamic d) void {
c.{self::C::x} = null;
c.{self::C::y} = null;
d.x = null;
}
static method main() dynamic {}