rlox/interpreter/tests/lox/method/print_bound_method.lox

5 lines
87 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
class Foo {
method() { }
}
var foo = Foo();
print foo.method; // expect: <fn method>