Source code
Revision control
Copy as Markdown
Other Tools
// |jit-test|
Reflect.parse(`class A {
static { print('hi'); }
}`)
Reflect.parse(`class A {
static x = 10;
static { this.x++ }
}`);
// |jit-test|
Reflect.parse(`class A {
static { print('hi'); }
}`)
Reflect.parse(`class A {
static x = 10;
static { this.x++ }
}`);