this.lox 168 B

1234567891011121314
  1. // This program should print “Nested instance”
  2. class Nested {
  3. method() {
  4. fun function() {
  5. print this;
  6. }
  7. function();
  8. }
  9. }
  10. Nested().method();