* add new custom eslint rule, replace remaining t.identifier("undefined") with buildUndefinedNode(), update tests
* change no-undefined-identifier reporting descriptor
5 lines
80 B
JavaScript
5 lines
80 B
JavaScript
var z = {};
|
|
var _z$x = z.x;
|
|
_z$x = _z$x === void 0 ? {} : _z$x;
|
|
var y = _z$x.y;
|