mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
87 lines
2.1 KiB
JavaScript
87 lines
2.1 KiB
JavaScript
function _classCallCheck(instance, Constructor) {
|
|
if (!(instance instanceof Constructor)) {
|
|
throw new TypeError("Cannot call a class as a function");
|
|
}
|
|
}
|
|
function _defineProperties(target, props) {
|
|
for(var i = 0; i < props.length; i++){
|
|
var descriptor = props[i];
|
|
descriptor.enumerable = descriptor.enumerable || false;
|
|
descriptor.configurable = true;
|
|
if ("value" in descriptor) descriptor.writable = true;
|
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
}
|
|
}
|
|
function _createClass(Constructor, protoProps, staticProps) {
|
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
return Constructor;
|
|
}
|
|
var tmp = "computedname", tmp1 = "computedname1", tmp2 = "computedname2", tmp3 = "computedname3", tmp4 = "computedname4", tmp5 = "computedname";
|
|
var C = // @target:es6
|
|
/*#__PURE__*/ function() {
|
|
"use strict";
|
|
function C() {
|
|
_classCallCheck(this, C);
|
|
}
|
|
_createClass(C, [
|
|
{
|
|
key: "name",
|
|
get: function get() {
|
|
return this._name;
|
|
}
|
|
},
|
|
{
|
|
key: tmp1,
|
|
get: function get() {
|
|
return "";
|
|
}
|
|
},
|
|
{
|
|
key: tmp2,
|
|
get: function get() {
|
|
return "";
|
|
}
|
|
},
|
|
{
|
|
key: tmp3,
|
|
set: function set(x) {
|
|
}
|
|
},
|
|
{
|
|
key: tmp4,
|
|
set: function set(y) {
|
|
}
|
|
},
|
|
{
|
|
key: "foo",
|
|
set: function set(a) {
|
|
}
|
|
}
|
|
], [
|
|
{
|
|
key: "name2",
|
|
get: function get() {
|
|
return "BYE";
|
|
}
|
|
},
|
|
{
|
|
key: tmp,
|
|
get: function get() {
|
|
return "";
|
|
}
|
|
},
|
|
{
|
|
key: "bar",
|
|
set: function set(b) {
|
|
}
|
|
},
|
|
{
|
|
key: tmp5,
|
|
set: function set(b) {
|
|
}
|
|
}
|
|
]);
|
|
return C;
|
|
}();
|