rlox/interpreter/tests/lox/constructor/arguments.lox
2024-09-01 19:15:55 +02:00

11 lines
173 B
Lox

class Foo {
init(a, b) {
print "init"; // expect: init
this.a = a;
this.b = b;
}
}
var foo = Foo(1, 2);
print foo.a; // expect: 1
print foo.b; // expect: 2