this.lox 166 B

123456789101112
  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();