rlox/interpreter/tests/lox/inheritance/constructor.lox

14 lines
158 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
class A {
init(param) {
this.field = param;
}
test() {
print this.field;
}
}
class B < A {}
var b = B("value");
b.test(); // expect: value