Files
babel/packages/babel-plugin-transform-new-target/test/fixtures/general/object/expected.js
Henry Zhu 0f823beeb1 Newlines in fixtures (#6044)
* write newlines for fixtures

* rerun fixtures
2017-08-02 15:35:29 -04:00

12 lines
155 B
JavaScript

"use strict";
const object = {
test() {
void 0;
},
test2: function _target() {
this instanceof _target ? this.constructor : void 0;
}
};