|
@@ -831,6 +831,8 @@ var CustomNodes;
|
|
|
CustomNodes[CustomNodes["StringArrayCallsWrapper"] = 14] = "StringArrayCallsWrapper";
|
|
|
CustomNodes[CustomNodes["StringArrayNode"] = 15] = "StringArrayNode";
|
|
|
CustomNodes[CustomNodes["StringArrayRotateFunctionNode"] = 16] = "StringArrayRotateFunctionNode";
|
|
|
+ CustomNodes[CustomNodes["StringLiteralControlFlowStorageCallNode"] = 17] = "StringLiteralControlFlowStorageCallNode";
|
|
|
+ CustomNodes[CustomNodes["StringLiteralNode"] = 18] = "StringLiteralNode";
|
|
|
})(CustomNodes = exports.CustomNodes || (exports.CustomNodes = {}));
|
|
|
|
|
|
/***/ }),
|
|
@@ -1752,6 +1754,7 @@ var ControlFlowReplacers;
|
|
|
ControlFlowReplacers[ControlFlowReplacers["BinaryExpressionControlFlowReplacer"] = 0] = "BinaryExpressionControlFlowReplacer";
|
|
|
ControlFlowReplacers[ControlFlowReplacers["CallExpressionControlFlowReplacer"] = 1] = "CallExpressionControlFlowReplacer";
|
|
|
ControlFlowReplacers[ControlFlowReplacers["LogicalExpressionControlFlowReplacer"] = 2] = "LogicalExpressionControlFlowReplacer";
|
|
|
+ ControlFlowReplacers[ControlFlowReplacers["StringLiteralControlFlowReplacer"] = 3] = "StringLiteralControlFlowReplacer";
|
|
|
})(ControlFlowReplacers = exports.ControlFlowReplacers || (exports.ControlFlowReplacers = {}));
|
|
|
|
|
|
/***/ }),
|
|
@@ -2691,6 +2694,8 @@ var SelfDefendingUnicodeNode_1 = __webpack_require__(67);
|
|
|
var StringArrayCallsWrapper_1 = __webpack_require__(69);
|
|
|
var StringArrayNode_1 = __webpack_require__(70);
|
|
|
var StringArrayRotateFunctionNode_1 = __webpack_require__(71);
|
|
|
+var StringLiteralControlFlowStorageCallNode_1 = __webpack_require__(135);
|
|
|
+var StringLiteralNode_1 = __webpack_require__(133);
|
|
|
exports.customNodesModule = new inversify_1.ContainerModule(function (bind) {
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(BinaryExpressionFunctionNode_1.BinaryExpressionFunctionNode).whenTargetNamed(CustomNodes_1.CustomNodes.BinaryExpressionFunctionNode);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(BlockStatementControlFlowFlatteningNode_1.BlockStatementControlFlowFlatteningNode).whenTargetNamed(CustomNodes_1.CustomNodes.BlockStatementControlFlowFlatteningNode);
|
|
@@ -2709,6 +2714,8 @@ exports.customNodesModule = new inversify_1.ContainerModule(function (bind) {
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(StringArrayCallsWrapper_1.StringArrayCallsWrapper).whenTargetNamed(CustomNodes_1.CustomNodes.StringArrayCallsWrapper);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(StringArrayNode_1.StringArrayNode).whenTargetNamed(CustomNodes_1.CustomNodes.StringArrayNode);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(StringArrayRotateFunctionNode_1.StringArrayRotateFunctionNode).whenTargetNamed(CustomNodes_1.CustomNodes.StringArrayRotateFunctionNode);
|
|
|
+ bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(StringLiteralControlFlowStorageCallNode_1.StringLiteralControlFlowStorageCallNode).whenTargetNamed(CustomNodes_1.CustomNodes.StringLiteralControlFlowStorageCallNode);
|
|
|
+ bind(ServiceIdentifiers_1.ServiceIdentifiers.Newable__ICustomNode).toConstructor(StringLiteralNode_1.StringLiteralNode).whenTargetNamed(CustomNodes_1.CustomNodes.StringLiteralNode);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.ICustomNodeGroup).to(ConsoleOutputCustomNodeGroup_1.ConsoleOutputCustomNodeGroup).whenTargetNamed(CustomNodeGroups_1.CustomNodeGroups.ConsoleOutputCustomNodeGroup);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.ICustomNodeGroup).to(DebugProtectionCustomNodeGroup_1.DebugProtectionCustomNodeGroup).whenTargetNamed(CustomNodeGroups_1.CustomNodeGroups.DebugProtectionCustomNodeGroup);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.ICustomNodeGroup).to(DomainLockCustomNodeGroup_1.DomainLockCustomNodeGroup).whenTargetNamed(CustomNodeGroups_1.CustomNodeGroups.DomainLockCustomNodeGroup);
|
|
@@ -2749,10 +2756,12 @@ var ControlFlowReplacers_1 = __webpack_require__(29);
|
|
|
var BinaryExpressionControlFlowReplacer_1 = __webpack_require__(77);
|
|
|
var CallExpressionControlFlowReplacer_1 = __webpack_require__(78);
|
|
|
var LogicalExpressionControlFlowReplacer_1 = __webpack_require__(79);
|
|
|
+var StringLiteralControlFlowReplacer_1 = __webpack_require__(134);
|
|
|
exports.controlFlowTransformersModule = new inversify_1.ContainerModule(function (bind) {
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.IControlFlowReplacer).to(BinaryExpressionControlFlowReplacer_1.BinaryExpressionControlFlowReplacer).whenTargetNamed(ControlFlowReplacers_1.ControlFlowReplacers.BinaryExpressionControlFlowReplacer);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.IControlFlowReplacer).to(CallExpressionControlFlowReplacer_1.CallExpressionControlFlowReplacer).whenTargetNamed(ControlFlowReplacers_1.ControlFlowReplacers.CallExpressionControlFlowReplacer);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.IControlFlowReplacer).to(LogicalExpressionControlFlowReplacer_1.LogicalExpressionControlFlowReplacer).whenTargetNamed(ControlFlowReplacers_1.ControlFlowReplacers.LogicalExpressionControlFlowReplacer);
|
|
|
+ bind(ServiceIdentifiers_1.ServiceIdentifiers.IControlFlowReplacer).to(StringLiteralControlFlowReplacer_1.StringLiteralControlFlowReplacer).whenTargetNamed(ControlFlowReplacers_1.ControlFlowReplacers.StringLiteralControlFlowReplacer);
|
|
|
bind(ServiceIdentifiers_1.ServiceIdentifiers.Factory__IControlFlowReplacer).toFactory(function (context) {
|
|
|
var cache = new Map();
|
|
|
return function (replacerName) {
|
|
@@ -4656,7 +4665,7 @@ var FunctionControlFlowTransformer = FunctionControlFlowTransformer_1 = function
|
|
|
|
|
|
return FunctionControlFlowTransformer;
|
|
|
}(AbstractNodeTransformer_1.AbstractNodeTransformer);
|
|
|
-FunctionControlFlowTransformer.controlFlowReplacersMap = new Map([[NodeType_1.NodeType.BinaryExpression, ControlFlowReplacers_1.ControlFlowReplacers.BinaryExpressionControlFlowReplacer], [NodeType_1.NodeType.CallExpression, ControlFlowReplacers_1.ControlFlowReplacers.CallExpressionControlFlowReplacer], [NodeType_1.NodeType.LogicalExpression, ControlFlowReplacers_1.ControlFlowReplacers.LogicalExpressionControlFlowReplacer]]);
|
|
|
+FunctionControlFlowTransformer.controlFlowReplacersMap = new Map([[NodeType_1.NodeType.BinaryExpression, ControlFlowReplacers_1.ControlFlowReplacers.BinaryExpressionControlFlowReplacer], [NodeType_1.NodeType.CallExpression, ControlFlowReplacers_1.ControlFlowReplacers.CallExpressionControlFlowReplacer], [NodeType_1.NodeType.LogicalExpression, ControlFlowReplacers_1.ControlFlowReplacers.LogicalExpressionControlFlowReplacer], [NodeType_1.NodeType.Literal, ControlFlowReplacers_1.ControlFlowReplacers.StringLiteralControlFlowReplacer]]);
|
|
|
FunctionControlFlowTransformer.hostNodeSearchMinDepth = 0;
|
|
|
FunctionControlFlowTransformer.hostNodeSearchMaxDepth = 2;
|
|
|
FunctionControlFlowTransformer = FunctionControlFlowTransformer_1 = tslib_1.__decorate([inversify_1.injectable(), tslib_1.__param(0, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.Factory__TControlFlowStorage)), tslib_1.__param(1, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.Factory__IControlFlowReplacer)), tslib_1.__param(2, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.Factory__ICustomNode)), tslib_1.__param(3, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.IOptions)), tslib_1.__metadata("design:paramtypes", [Function, Function, Function, Object])], FunctionControlFlowTransformer);
|
|
@@ -7167,6 +7176,177 @@ module.exports = require("reflect-metadata");
|
|
|
var JavaScriptObfuscator_1 = __webpack_require__(17);
|
|
|
module.exports = JavaScriptObfuscator_1.JavaScriptObfuscator;
|
|
|
|
|
|
+/***/ }),
|
|
|
+/* 129 */,
|
|
|
+/* 130 */,
|
|
|
+/* 131 */,
|
|
|
+/* 132 */,
|
|
|
+/* 133 */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+
|
|
|
+
|
|
|
+var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
|
|
|
+
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
+
|
|
|
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
|
+
|
|
|
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
|
+
|
|
|
+var tslib_1 = __webpack_require__(1);
|
|
|
+var inversify_1 = __webpack_require__(0);
|
|
|
+var ServiceIdentifiers_1 = __webpack_require__(2);
|
|
|
+var Initializable_1 = __webpack_require__(5);
|
|
|
+var AbstractCustomNode_1 = __webpack_require__(7);
|
|
|
+var Nodes_1 = __webpack_require__(14);
|
|
|
+var StringLiteralNode = function (_AbstractCustomNode_) {
|
|
|
+ _inherits(StringLiteralNode, _AbstractCustomNode_);
|
|
|
+
|
|
|
+ function StringLiteralNode(options) {
|
|
|
+ _classCallCheck(this, StringLiteralNode);
|
|
|
+
|
|
|
+ return _possibleConstructorReturn(this, (StringLiteralNode.__proto__ || Object.getPrototypeOf(StringLiteralNode)).call(this, options));
|
|
|
+ }
|
|
|
+
|
|
|
+ _createClass(StringLiteralNode, [{
|
|
|
+ key: "initialize",
|
|
|
+ value: function initialize(literalValue) {
|
|
|
+ this.literalValue = literalValue;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: "getNodeStructure",
|
|
|
+ value: function getNodeStructure() {
|
|
|
+ var structure = Nodes_1.Nodes.getLiteralNode(this.literalValue);
|
|
|
+ return [structure];
|
|
|
+ }
|
|
|
+ }]);
|
|
|
+
|
|
|
+ return StringLiteralNode;
|
|
|
+}(AbstractCustomNode_1.AbstractCustomNode);
|
|
|
+tslib_1.__decorate([Initializable_1.initializable(), tslib_1.__metadata("design:type", String)], StringLiteralNode.prototype, "literalValue", void 0);
|
|
|
+StringLiteralNode = tslib_1.__decorate([inversify_1.injectable(), tslib_1.__param(0, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.IOptions)), tslib_1.__metadata("design:paramtypes", [Object])], StringLiteralNode);
|
|
|
+exports.StringLiteralNode = StringLiteralNode;
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+/* 134 */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+
|
|
|
+
|
|
|
+var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
|
|
|
+
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
+
|
|
|
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
|
+
|
|
|
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
|
+
|
|
|
+var tslib_1 = __webpack_require__(1);
|
|
|
+var inversify_1 = __webpack_require__(0);
|
|
|
+var ServiceIdentifiers_1 = __webpack_require__(2);
|
|
|
+var CustomNodes_1 = __webpack_require__(9);
|
|
|
+var AbstractControlFlowReplacer_1 = __webpack_require__(32);
|
|
|
+var Node_1 = __webpack_require__(6);
|
|
|
+var StringLiteralControlFlowReplacer = StringLiteralControlFlowReplacer_1 = function (_AbstractControlFlowR) {
|
|
|
+ _inherits(StringLiteralControlFlowReplacer, _AbstractControlFlowR);
|
|
|
+
|
|
|
+ function StringLiteralControlFlowReplacer(customNodeFactory, options) {
|
|
|
+ _classCallCheck(this, StringLiteralControlFlowReplacer);
|
|
|
+
|
|
|
+ return _possibleConstructorReturn(this, (StringLiteralControlFlowReplacer.__proto__ || Object.getPrototypeOf(StringLiteralControlFlowReplacer)).call(this, customNodeFactory, options));
|
|
|
+ }
|
|
|
+
|
|
|
+ _createClass(StringLiteralControlFlowReplacer, [{
|
|
|
+ key: "replace",
|
|
|
+ value: function replace(literalNode, parentNode, controlFlowStorage) {
|
|
|
+ if (Node_1.Node.isPropertyNode(parentNode) && parentNode.key === literalNode) {
|
|
|
+ return literalNode;
|
|
|
+ }
|
|
|
+ if (typeof literalNode.value !== 'string' || literalNode.value.length < 3) {
|
|
|
+ return literalNode;
|
|
|
+ }
|
|
|
+ var replacerId = String(literalNode.value);
|
|
|
+ var literalFunctionCustomNode = this.customNodeFactory(CustomNodes_1.CustomNodes.StringLiteralNode);
|
|
|
+ literalFunctionCustomNode.initialize(literalNode.value);
|
|
|
+ var storageKey = this.insertCustomNodeToControlFlowStorage(literalFunctionCustomNode, controlFlowStorage, replacerId, StringLiteralControlFlowReplacer_1.usingExistingIdentifierChance);
|
|
|
+ return this.getControlFlowStorageCallNode(controlFlowStorage.getStorageId(), storageKey);
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: "getControlFlowStorageCallNode",
|
|
|
+ value: function getControlFlowStorageCallNode(controlFlowStorageId, storageKey) {
|
|
|
+ var controlFlowStorageCallCustomNode = this.customNodeFactory(CustomNodes_1.CustomNodes.StringLiteralControlFlowStorageCallNode);
|
|
|
+ controlFlowStorageCallCustomNode.initialize(controlFlowStorageId, storageKey);
|
|
|
+ var statementNode = controlFlowStorageCallCustomNode.getNode()[0];
|
|
|
+ if (!statementNode || !Node_1.Node.isExpressionStatementNode(statementNode)) {
|
|
|
+ throw new Error("`controlFlowStorageCallCustomNode.getNode()[0]` should returns array with `ExpressionStatement` node");
|
|
|
+ }
|
|
|
+ return statementNode.expression;
|
|
|
+ }
|
|
|
+ }]);
|
|
|
+
|
|
|
+ return StringLiteralControlFlowReplacer;
|
|
|
+}(AbstractControlFlowReplacer_1.AbstractControlFlowReplacer);
|
|
|
+StringLiteralControlFlowReplacer.usingExistingIdentifierChance = 1;
|
|
|
+StringLiteralControlFlowReplacer = StringLiteralControlFlowReplacer_1 = tslib_1.__decorate([inversify_1.injectable(), tslib_1.__param(0, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.Factory__ICustomNode)), tslib_1.__param(1, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.IOptions)), tslib_1.__metadata("design:paramtypes", [Function, Object])], StringLiteralControlFlowReplacer);
|
|
|
+exports.StringLiteralControlFlowReplacer = StringLiteralControlFlowReplacer;
|
|
|
+var StringLiteralControlFlowReplacer_1;
|
|
|
+
|
|
|
+/***/ }),
|
|
|
+/* 135 */
|
|
|
+/***/ (function(module, exports, __webpack_require__) {
|
|
|
+
|
|
|
+"use strict";
|
|
|
+
|
|
|
+
|
|
|
+var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
|
|
|
+
|
|
|
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
|
+
|
|
|
+function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
|
|
+
|
|
|
+function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
|
|
+
|
|
|
+var tslib_1 = __webpack_require__(1);
|
|
|
+var inversify_1 = __webpack_require__(0);
|
|
|
+var ServiceIdentifiers_1 = __webpack_require__(2);
|
|
|
+var Initializable_1 = __webpack_require__(5);
|
|
|
+var AbstractCustomNode_1 = __webpack_require__(7);
|
|
|
+var Nodes_1 = __webpack_require__(14);
|
|
|
+var NodeUtils_1 = __webpack_require__(3);
|
|
|
+var StringLiteralControlFlowStorageCallNode = function (_AbstractCustomNode_) {
|
|
|
+ _inherits(StringLiteralControlFlowStorageCallNode, _AbstractCustomNode_);
|
|
|
+
|
|
|
+ function StringLiteralControlFlowStorageCallNode(options) {
|
|
|
+ _classCallCheck(this, StringLiteralControlFlowStorageCallNode);
|
|
|
+
|
|
|
+ return _possibleConstructorReturn(this, (StringLiteralControlFlowStorageCallNode.__proto__ || Object.getPrototypeOf(StringLiteralControlFlowStorageCallNode)).call(this, options));
|
|
|
+ }
|
|
|
+
|
|
|
+ _createClass(StringLiteralControlFlowStorageCallNode, [{
|
|
|
+ key: "initialize",
|
|
|
+ value: function initialize(controlFlowStorageName, controlFlowStorageKey) {
|
|
|
+ this.controlFlowStorageName = controlFlowStorageName;
|
|
|
+ this.controlFlowStorageKey = controlFlowStorageKey;
|
|
|
+ }
|
|
|
+ }, {
|
|
|
+ key: "getNodeStructure",
|
|
|
+ value: function getNodeStructure() {
|
|
|
+ var structure = Nodes_1.Nodes.getExpressionStatementNode(Nodes_1.Nodes.getMemberExpressionNode(Nodes_1.Nodes.getIdentifierNode(this.controlFlowStorageName), Nodes_1.Nodes.getIdentifierNode(this.controlFlowStorageKey)));
|
|
|
+ NodeUtils_1.NodeUtils.parentize(structure);
|
|
|
+ return [structure];
|
|
|
+ }
|
|
|
+ }]);
|
|
|
+
|
|
|
+ return StringLiteralControlFlowStorageCallNode;
|
|
|
+}(AbstractCustomNode_1.AbstractCustomNode);
|
|
|
+tslib_1.__decorate([Initializable_1.initializable(), tslib_1.__metadata("design:type", String)], StringLiteralControlFlowStorageCallNode.prototype, "controlFlowStorageKey", void 0);
|
|
|
+tslib_1.__decorate([Initializable_1.initializable(), tslib_1.__metadata("design:type", String)], StringLiteralControlFlowStorageCallNode.prototype, "controlFlowStorageName", void 0);
|
|
|
+StringLiteralControlFlowStorageCallNode = tslib_1.__decorate([inversify_1.injectable(), tslib_1.__param(0, inversify_1.inject(ServiceIdentifiers_1.ServiceIdentifiers.IOptions)), tslib_1.__metadata("design:paramtypes", [Object])], StringLiteralControlFlowStorageCallNode);
|
|
|
+exports.StringLiteralControlFlowStorageCallNode = StringLiteralControlFlowStorageCallNode;
|
|
|
+
|
|
|
/***/ })
|
|
|
/******/ ]);
|
|
|
//# sourceMappingURL=index.js.map
|