* Round out class properties tests * Rename in preperation for private tests * Fix options
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
var foo = "bar";
|
|
|
|
var Foo = function Foo() {
|
|
babelHelpers.classCallCheck(this, Foo);
|
|
Object.defineProperty(this, "bar", {
|
|
configurable: true,
|
|
enumerable: true,
|
|
writable: true,
|
|
value: foo
|
|
});
|
|
var _foo = "foo";
|
|
};
|