summaryrefslogtreecommitdiffstats
path: root/node_modules/@webassemblyjs/helper-fsm
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/@webassemblyjs/helper-fsm')
-rw-r--r--node_modules/@webassemblyjs/helper-fsm/LICENSE21
-rw-r--r--node_modules/@webassemblyjs/helper-fsm/esm/index.js101
-rw-r--r--node_modules/@webassemblyjs/helper-fsm/lib/index.js109
-rw-r--r--node_modules/@webassemblyjs/helper-fsm/package.json41
4 files changed, 272 insertions, 0 deletions
diff --git a/node_modules/@webassemblyjs/helper-fsm/LICENSE b/node_modules/@webassemblyjs/helper-fsm/LICENSE
new file mode 100644
index 0000000..87e7e1f
--- /dev/null
+++ b/node_modules/@webassemblyjs/helper-fsm/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2018 Sven Sauleau <sven@sauleau.com>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/node_modules/@webassemblyjs/helper-fsm/esm/index.js b/node_modules/@webassemblyjs/helper-fsm/esm/index.js
new file mode 100644
index 0000000..c7266b8
--- /dev/null
+++ b/node_modules/@webassemblyjs/helper-fsm/esm/index.js
@@ -0,0 +1,101 @@
+function _sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
+
+function _slicedToArray(arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return _sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
+
+function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
+
+var STOP = Symbol("STOP");
+
+function makeTransition(regex, nextState) {
+ var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
+ _ref$n = _ref.n,
+ n = _ref$n === void 0 ? 1 : _ref$n,
+ allowedSeparator = _ref.allowedSeparator;
+
+ return function (instance) {
+ if (allowedSeparator) {
+ if (instance.input[instance.ptr] === allowedSeparator) {
+ if (regex.test(instance.input.substring(instance.ptr - 1, instance.ptr))) {
+ // Consume the separator and stay in current state
+ return [instance.currentState, 1];
+ } else {
+ return [instance.terminatingState, 0];
+ }
+ }
+ }
+
+ if (regex.test(instance.input.substring(instance.ptr, instance.ptr + n))) {
+ return [nextState, n];
+ }
+
+ return false;
+ };
+}
+
+function combineTransitions(transitions) {
+ return function () {
+ var match = false;
+ var currentTransitions = transitions[this.currentState] || [];
+
+ for (var i = 0; i < currentTransitions.length; ++i) {
+ match = currentTransitions[i](this);
+
+ if (match !== false) {
+ break;
+ }
+ }
+
+ return match || [this.terminatingState, 0];
+ };
+}
+
+var FSM =
+/*#__PURE__*/
+function () {
+ function FSM(transitions, initialState) {
+ var terminatingState = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : STOP;
+
+ _classCallCheck(this, FSM);
+
+ this.initialState = initialState;
+ this.terminatingState = terminatingState;
+
+ if (terminatingState === STOP || !transitions[terminatingState]) {
+ transitions[terminatingState] = [];
+ }
+
+ this.transitionFunction = combineTransitions.call(this, transitions);
+ }
+
+ _createClass(FSM, [{
+ key: "run",
+ value: function run(input) {
+ this.input = input;
+ this.ptr = 0;
+ this.currentState = this.initialState;
+ var value = "";
+ var eatLength, nextState;
+
+ while (this.currentState !== this.terminatingState && this.ptr < this.input.length) {
+ var _transitionFunction = this.transitionFunction();
+
+ var _transitionFunction2 = _slicedToArray(_transitionFunction, 2);
+
+ nextState = _transitionFunction2[0];
+ eatLength = _transitionFunction2[1];
+ value += this.input.substring(this.ptr, this.ptr += eatLength);
+ this.currentState = nextState;
+ }
+
+ return value;
+ }
+ }]);
+
+ return FSM;
+}();
+
+export { makeTransition, FSM }; \ No newline at end of file
diff --git a/node_modules/@webassemblyjs/helper-fsm/lib/index.js b/node_modules/@webassemblyjs/helper-fsm/lib/index.js
new file mode 100644
index 0000000..c23120d
--- /dev/null
+++ b/node_modules/@webassemblyjs/helper-fsm/lib/index.js
@@ -0,0 +1,109 @@
+"use strict";
+
+Object.defineProperty(exports, "__esModule", {
+ value: true
+});
+exports.makeTransition = makeTransition;
+exports.FSM = void 0;
+
+function _sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
+
+function _slicedToArray(arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return _sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }
+
+function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } }
+
+function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
+
+var STOP = Symbol("STOP");
+
+function makeTransition(regex, nextState) {
+ var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
+ _ref$n = _ref.n,
+ n = _ref$n === void 0 ? 1 : _ref$n,
+ allowedSeparator = _ref.allowedSeparator;
+
+ return function (instance) {
+ if (allowedSeparator) {
+ if (instance.input[instance.ptr] === allowedSeparator) {
+ if (regex.test(instance.input.substring(instance.ptr - 1, instance.ptr))) {
+ // Consume the separator and stay in current state
+ return [instance.currentState, 1];
+ } else {
+ return [instance.terminatingState, 0];
+ }
+ }
+ }
+
+ if (regex.test(instance.input.substring(instance.ptr, instance.ptr + n))) {
+ return [nextState, n];
+ }
+
+ return false;
+ };
+}
+
+function combineTransitions(transitions) {
+ return function () {
+ var match = false;
+ var currentTransitions = transitions[this.currentState] || [];
+
+ for (var i = 0; i < currentTransitions.length; ++i) {
+ match = currentTransitions[i](this);
+
+ if (match !== false) {
+ break;
+ }
+ }
+
+ return match || [this.terminatingState, 0];
+ };
+}
+
+var FSM =
+/*#__PURE__*/
+function () {
+ function FSM(transitions, initialState) {
+ var terminatingState = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : STOP;
+
+ _classCallCheck(this, FSM);
+
+ this.initialState = initialState;
+ this.terminatingState = terminatingState;
+
+ if (terminatingState === STOP || !transitions[terminatingState]) {
+ transitions[terminatingState] = [];
+ }
+
+ this.transitionFunction = combineTransitions.call(this, transitions);
+ }
+
+ _createClass(FSM, [{
+ key: "run",
+ value: function run(input) {
+ this.input = input;
+ this.ptr = 0;
+ this.currentState = this.initialState;
+ var value = "";
+ var eatLength, nextState;
+
+ while (this.currentState !== this.terminatingState && this.ptr < this.input.length) {
+ var _transitionFunction = this.transitionFunction();
+
+ var _transitionFunction2 = _slicedToArray(_transitionFunction, 2);
+
+ nextState = _transitionFunction2[0];
+ eatLength = _transitionFunction2[1];
+ value += this.input.substring(this.ptr, this.ptr += eatLength);
+ this.currentState = nextState;
+ }
+
+ return value;
+ }
+ }]);
+
+ return FSM;
+}();
+
+exports.FSM = FSM; \ No newline at end of file
diff --git a/node_modules/@webassemblyjs/helper-fsm/package.json b/node_modules/@webassemblyjs/helper-fsm/package.json
new file mode 100644
index 0000000..ba42e7f
--- /dev/null
+++ b/node_modules/@webassemblyjs/helper-fsm/package.json
@@ -0,0 +1,41 @@
+{
+ "_from": "@webassemblyjs/helper-fsm@1.9.0",
+ "_id": "@webassemblyjs/helper-fsm@1.9.0",
+ "_inBundle": false,
+ "_integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
+ "_location": "/@webassemblyjs/helper-fsm",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "version",
+ "registry": true,
+ "raw": "@webassemblyjs/helper-fsm@1.9.0",
+ "name": "@webassemblyjs/helper-fsm",
+ "escapedName": "@webassemblyjs%2fhelper-fsm",
+ "scope": "@webassemblyjs",
+ "rawSpec": "1.9.0",
+ "saveSpec": null,
+ "fetchSpec": "1.9.0"
+ },
+ "_requiredBy": [
+ "/@webassemblyjs/wast-parser"
+ ],
+ "_resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
+ "_shasum": "c05256b71244214671f4b08ec108ad63b70eddb8",
+ "_spec": "@webassemblyjs/helper-fsm@1.9.0",
+ "_where": "/home/pruss/Dev/3-minute-website/node_modules/@webassemblyjs/wast-parser",
+ "author": {
+ "name": "Mauro Bringolf"
+ },
+ "bundleDependencies": false,
+ "deprecated": false,
+ "description": "FSM implementation",
+ "gitHead": "0440b420888c1f7701eb9762ec657775506b87d8",
+ "license": "ISC",
+ "main": "lib/index.js",
+ "module": "esm/index.js",
+ "name": "@webassemblyjs/helper-fsm",
+ "publishConfig": {
+ "access": "public"
+ },
+ "version": "1.9.0"
+}