New extension: Classes (Interpreter)

The next extension for the Interpreter challenge is now live: Classes.

This extension builds on the work from the previous one and covers Chapter 12 of the book.

By the end of this extension, your interpreter will be able to handle lox classes, instances, constructors and methods.

Here’s a sneak peek at what you’ll achieve:

class Robot {
  init(model, function) {
    this.model = model;
    this.function = function;
  }
}

Please give this a try and let us know how it can be improved! @ryan-gang (author of this extension), and I will be available here to help out with any tester or instruction-related issues.