When using arrow functions to define methods on a class, QJS throws exception: ``` SyntaxError: invalid property name at ./test.js:2:6 ``` ```javascript class TestClass { get = () => console.log("get"); } new TestClass().get(); ```