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