"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SParser = void 0; const __1 = require(".."); class SParser { constructor(factory = null) { this.factory = new __1.SItemFactory(); if (factory) { this.factory = factory; } } } exports.SParser = SParser;