awv3
Version:
⚡ AWV3 embedded CAD
28 lines (22 loc) • 611 B
JavaScript
import _inheritsLoose from "@babel/runtime/helpers/inheritsLoose";
var _class, _temp;
import Expr from './expr';
var NameVariable = (_temp = _class =
/*#__PURE__*/
function (_Expr) {
_inheritsLoose(NameVariable, _Expr);
function NameVariable() {
return _Expr.apply(this, arguments) || this;
}
var _proto = NameVariable.prototype;
_proto.unparse = function unparse() {
return this.id;
};
return NameVariable;
}(Expr), Object.defineProperty(_class, "_fields", {
configurable: true,
enumerable: true,
writable: true,
value: ['id']
}), _temp);
export { NameVariable as default };