When trying to parse the example code from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes#public_field_declarations Esprima fails with `Error: Line 3: Unexpected token =` ``` var esprima = require('nightly-esprima'); // installed version 2021.8.30 var program = ` class Rectangle { height = 0; width; constructor(height, width) { this.height = height; this.width = width; } } `; esprima.parseScript(program); ``` tested using Node.js v14.18.1