Files
babel/test/fixtures/transformation/es6-properties.computed-loose/mixed/expected.js
2015-01-21 23:04:31 +11:00

11 lines
172 B
JavaScript

"use strict";
var obj = (function () {
var _obj = {};
_obj["x" + foo] = "heh";
_obj["y" + bar] = "noo";
_obj.foo = "foo";
_obj.bar = "bar";
return _obj;
})();