123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = function (d, b) {
- extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
- return extendStatics(d, b);
- };
- return function (d, b) {
- if (typeof b !== "function" && b !== null)
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- var __read = (this && this.__read) || function (o, n) {
- var m = typeof Symbol === "function" && o[Symbol.iterator];
- if (!m) return o;
- var i = m.call(o), r, ar = [], e;
- try {
- while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
- }
- catch (error) { e = { error: error }; }
- finally {
- try {
- if (r && !r.done && (m = i["return"])) m.call(i);
- }
- finally { if (e) throw e.error; }
- }
- return ar;
- };
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.SVGscriptbase = void 0;
- var Wrapper_js_1 = require("../Wrapper.js");
- var scriptbase_js_1 = require("../../common/Wrappers/scriptbase.js");
- var SVGscriptbase = (function (_super) {
- __extends(SVGscriptbase, _super);
- function SVGscriptbase() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- SVGscriptbase.prototype.toSVG = function (parent) {
- var svg = this.standardSVGnode(parent);
- var w = this.getBaseWidth();
- var _a = __read(this.getOffset(), 2), x = _a[0], v = _a[1];
- this.baseChild.toSVG(svg);
- this.scriptChild.toSVG(svg);
- this.scriptChild.place(w + x, v);
- };
- SVGscriptbase.kind = 'scriptbase';
- return SVGscriptbase;
- }((0, scriptbase_js_1.CommonScriptbaseMixin)(Wrapper_js_1.SVGWrapper)));
- exports.SVGscriptbase = SVGscriptbase;
- //# sourceMappingURL=scriptbase.js.map
|