mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 01:51:03 +00:00
1 line
26 KiB
Plaintext
1 line
26 KiB
Plaintext
{"dependencies":[{"name":"../tokenizer/const","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":16,"index":16},"end":{"line":1,"column":45,"index":45}}],"key":"6b/ARb+ibumpbmC11sZY9D+4SmM=","exportNames":["*"],"imports":1}},{"name":"../tokenizer/utils","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":5,"column":12,"index":114},"end":{"line":5,"column":41,"index":143}}],"key":"+XUJWYS23BK9kdI+fRlOnbCI6VE=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var constants = require(_dependencyMap[0], \"../tokenizer/const\");\n var TYPE = constants.TYPE;\n var NAME = constants.NAME;\n var utils = require(_dependencyMap[1], \"../tokenizer/utils\");\n var cmpStr = utils.cmpStr;\n var EOF = TYPE.EOF;\n var WHITESPACE = TYPE.WhiteSpace;\n var COMMENT = TYPE.Comment;\n var OFFSET_MASK = 0x00FFFFFF;\n var TYPE_SHIFT = 24;\n var TokenStream = function () {\n this.offsetAndType = null;\n this.balance = null;\n this.reset();\n };\n TokenStream.prototype = {\n reset: function () {\n this.eof = false;\n this.tokenIndex = -1;\n this.tokenType = 0;\n this.tokenStart = this.firstCharOffset;\n this.tokenEnd = this.firstCharOffset;\n },\n lookupType: function (offset) {\n offset += this.tokenIndex;\n if (offset < this.tokenCount) {\n return this.offsetAndType[offset] >> TYPE_SHIFT;\n }\n return EOF;\n },\n lookupOffset: function (offset) {\n offset += this.tokenIndex;\n if (offset < this.tokenCount) {\n return this.offsetAndType[offset - 1] & OFFSET_MASK;\n }\n return this.source.length;\n },\n lookupValue: function (offset, referenceStr) {\n offset += this.tokenIndex;\n if (offset < this.tokenCount) {\n return cmpStr(this.source, this.offsetAndType[offset - 1] & OFFSET_MASK, this.offsetAndType[offset] & OFFSET_MASK, referenceStr);\n }\n return false;\n },\n getTokenStart: function (tokenIndex) {\n if (tokenIndex === this.tokenIndex) {\n return this.tokenStart;\n }\n if (tokenIndex > 0) {\n return tokenIndex < this.tokenCount ? this.offsetAndType[tokenIndex - 1] & OFFSET_MASK : this.offsetAndType[this.tokenCount] & OFFSET_MASK;\n }\n return this.firstCharOffset;\n },\n // TODO: -> skipUntilBalanced\n getRawLength: function (startToken, mode) {\n var cursor = startToken;\n var balanceEnd;\n var offset = this.offsetAndType[Math.max(cursor - 1, 0)] & OFFSET_MASK;\n var type;\n loop: for (; cursor < this.tokenCount; cursor++) {\n balanceEnd = this.balance[cursor];\n\n // stop scanning on balance edge that points to offset before start token\n if (balanceEnd < startToken) {\n break loop;\n }\n type = this.offsetAndType[cursor] >> TYPE_SHIFT;\n\n // check token is stop type\n switch (mode(type, this.source, offset)) {\n case 1:\n break loop;\n case 2:\n cursor++;\n break loop;\n default:\n // fast forward to the end of balanced block\n if (this.balance[balanceEnd] === cursor) {\n cursor = balanceEnd;\n }\n offset = this.offsetAndType[cursor] & OFFSET_MASK;\n }\n }\n return cursor - this.tokenIndex;\n },\n isBalanceEdge: function (pos) {\n return this.balance[this.tokenIndex] < pos;\n },\n isDelim: function (code, offset) {\n if (offset) {\n return this.lookupType(offset) === TYPE.Delim && this.source.charCodeAt(this.lookupOffset(offset)) === code;\n }\n return this.tokenType === TYPE.Delim && this.source.charCodeAt(this.tokenStart) === code;\n },\n getTokenValue: function () {\n return this.source.substring(this.tokenStart, this.tokenEnd);\n },\n getTokenLength: function () {\n return this.tokenEnd - this.tokenStart;\n },\n substrToCursor: function (start) {\n return this.source.substring(start, this.tokenStart);\n },\n skipWS: function () {\n for (var i = this.tokenIndex, skipTokenCount = 0; i < this.tokenCount; i++, skipTokenCount++) {\n if (this.offsetAndType[i] >> TYPE_SHIFT !== WHITESPACE) {\n break;\n }\n }\n if (skipTokenCount > 0) {\n this.skip(skipTokenCount);\n }\n },\n skipSC: function () {\n while (this.tokenType === WHITESPACE || this.tokenType === COMMENT) {\n this.next();\n }\n },\n skip: function (tokenCount) {\n var next = this.tokenIndex + tokenCount;\n if (next < this.tokenCount) {\n this.tokenIndex = next;\n this.tokenStart = this.offsetAndType[next - 1] & OFFSET_MASK;\n next = this.offsetAndType[next];\n this.tokenType = next >> TYPE_SHIFT;\n this.tokenEnd = next & OFFSET_MASK;\n } else {\n this.tokenIndex = this.tokenCount;\n this.next();\n }\n },\n next: function () {\n var next = this.tokenIndex + 1;\n if (next < this.tokenCount) {\n this.tokenIndex = next;\n this.tokenStart = this.tokenEnd;\n next = this.offsetAndType[next];\n this.tokenType = next >> TYPE_SHIFT;\n this.tokenEnd = next & OFFSET_MASK;\n } else {\n this.tokenIndex = this.tokenCount;\n this.eof = true;\n this.tokenType = EOF;\n this.tokenStart = this.tokenEnd = this.source.length;\n }\n },\n forEachToken(fn) {\n for (var i = 0, offset = this.firstCharOffset; i < this.tokenCount; i++) {\n var start = offset;\n var item = this.offsetAndType[i];\n var end = item & OFFSET_MASK;\n var type = item >> TYPE_SHIFT;\n offset = end;\n fn(type, start, end, i);\n }\n },\n dump() {\n var tokens = new Array(this.tokenCount);\n this.forEachToken((type, start, end, index) => {\n tokens[index] = {\n idx: index,\n type: NAME[type],\n chunk: this.source.substring(start, end),\n balance: this.balance[index]\n };\n });\n return tokens;\n }\n };\n module.exports = TokenStream;\n});","lineCount":172,"map":[[2,2,1,0],[2,6,1,4,"constants"],[2,15,1,13],[2,18,1,16,"require"],[2,25,1,23],[2,26,1,23,"_dependencyMap"],[2,40,1,23],[2,65,1,44],[2,66,1,45],[3,2,2,0],[3,6,2,4,"TYPE"],[3,10,2,8],[3,13,2,11,"constants"],[3,22,2,20],[3,23,2,21,"TYPE"],[3,27,2,25],[4,2,3,0],[4,6,3,4,"NAME"],[4,10,3,8],[4,13,3,11,"constants"],[4,22,3,20],[4,23,3,21,"NAME"],[4,27,3,25],[5,2,5,0],[5,6,5,4,"utils"],[5,11,5,9],[5,14,5,12,"require"],[5,21,5,19],[5,22,5,19,"_dependencyMap"],[5,36,5,19],[5,61,5,40],[5,62,5,41],[6,2,6,0],[6,6,6,4,"cmpStr"],[6,12,6,10],[6,15,6,13,"utils"],[6,20,6,18],[6,21,6,19,"cmpStr"],[6,27,6,25],[7,2,8,0],[7,6,8,4,"EOF"],[7,9,8,7],[7,12,8,10,"TYPE"],[7,16,8,14],[7,17,8,15,"EOF"],[7,20,8,18],[8,2,9,0],[8,6,9,4,"WHITESPACE"],[8,16,9,14],[8,19,9,17,"TYPE"],[8,23,9,21],[8,24,9,22,"WhiteSpace"],[8,34,9,32],[9,2,10,0],[9,6,10,4,"COMMENT"],[9,13,10,11],[9,16,10,14,"TYPE"],[9,20,10,18],[9,21,10,19,"Comment"],[9,28,10,26],[10,2,12,0],[10,6,12,4,"OFFSET_MASK"],[10,17,12,15],[10,20,12,18],[10,30,12,28],[11,2,13,0],[11,6,13,4,"TYPE_SHIFT"],[11,16,13,14],[11,19,13,17],[11,21,13,19],[12,2,15,0],[12,6,15,4,"TokenStream"],[12,17,15,15],[12,20,15,18],[12,29,15,18,"TokenStream"],[12,30,15,18],[12,32,15,29],[13,4,16,4],[13,8,16,8],[13,9,16,9,"offsetAndType"],[13,22,16,22],[13,25,16,25],[13,29,16,29],[14,4,17,4],[14,8,17,8],[14,9,17,9,"balance"],[14,16,17,16],[14,19,17,19],[14,23,17,23],[15,4,19,4],[15,8,19,8],[15,9,19,9,"reset"],[15,14,19,14],[15,15,19,15],[15,16,19,16],[16,2,20,0],[16,3,20,1],[17,2,22,0,"TokenStream"],[17,13,22,11],[17,14,22,12,"prototype"],[17,23,22,21],[17,26,22,24],[18,4,23,4,"reset"],[18,9,23,9],[18,11,23,11],[18,20,23,11,"reset"],[18,21,23,11],[18,23,23,22],[19,6,24,8],[19,10,24,12],[19,11,24,13,"eof"],[19,14,24,16],[19,17,24,19],[19,22,24,24],[20,6,25,8],[20,10,25,12],[20,11,25,13,"tokenIndex"],[20,21,25,23],[20,24,25,26],[20,25,25,27],[20,26,25,28],[21,6,26,8],[21,10,26,12],[21,11,26,13,"tokenType"],[21,20,26,22],[21,23,26,25],[21,24,26,26],[22,6,27,8],[22,10,27,12],[22,11,27,13,"tokenStart"],[22,21,27,23],[22,24,27,26],[22,28,27,30],[22,29,27,31,"firstCharOffset"],[22,44,27,46],[23,6,28,8],[23,10,28,12],[23,11,28,13,"tokenEnd"],[23,19,28,21],[23,22,28,24],[23,26,28,28],[23,27,28,29,"firstCharOffset"],[23,42,28,44],[24,4,29,4],[24,5,29,5],[25,4,31,4,"lookupType"],[25,14,31,14],[25,16,31,16],[25,25,31,16,"lookupType"],[25,26,31,25,"offset"],[25,32,31,31],[25,34,31,33],[26,6,32,8,"offset"],[26,12,32,14],[26,16,32,18],[26,20,32,22],[26,21,32,23,"tokenIndex"],[26,31,32,33],[27,6,34,8],[27,10,34,12,"offset"],[27,16,34,18],[27,19,34,21],[27,23,34,25],[27,24,34,26,"tokenCount"],[27,34,34,36],[27,36,34,38],[28,8,35,12],[28,15,35,19],[28,19,35,23],[28,20,35,24,"offsetAndType"],[28,33,35,37],[28,34,35,38,"offset"],[28,40,35,44],[28,41,35,45],[28,45,35,49,"TYPE_SHIFT"],[28,55,35,59],[29,6,36,8],[30,6,38,8],[30,13,38,15,"EOF"],[30,16,38,18],[31,4,39,4],[31,5,39,5],[32,4,40,4,"lookupOffset"],[32,16,40,16],[32,18,40,18],[32,27,40,18,"lookupOffset"],[32,28,40,27,"offset"],[32,34,40,33],[32,36,40,35],[33,6,41,8,"offset"],[33,12,41,14],[33,16,41,18],[33,20,41,22],[33,21,41,23,"tokenIndex"],[33,31,41,33],[34,6,43,8],[34,10,43,12,"offset"],[34,16,43,18],[34,19,43,21],[34,23,43,25],[34,24,43,26,"tokenCount"],[34,34,43,36],[34,36,43,38],[35,8,44,12],[35,15,44,19],[35,19,44,23],[35,20,44,24,"offsetAndType"],[35,33,44,37],[35,34,44,38,"offset"],[35,40,44,44],[35,43,44,47],[35,44,44,48],[35,45,44,49],[35,48,44,52,"OFFSET_MASK"],[35,59,44,63],[36,6,45,8],[37,6,47,8],[37,13,47,15],[37,17,47,19],[37,18,47,20,"source"],[37,24,47,26],[37,25,47,27,"length"],[37,31,47,33],[38,4,48,4],[38,5,48,5],[39,4,49,4,"lookupValue"],[39,15,49,15],[39,17,49,17],[39,26,49,17,"lookupValue"],[39,27,49,26,"offset"],[39,33,49,32],[39,35,49,34,"referenceStr"],[39,47,49,46],[39,49,49,48],[40,6,50,8,"offset"],[40,12,50,14],[40,16,50,18],[40,20,50,22],[40,21,50,23,"tokenIndex"],[40,31,50,33],[41,6,52,8],[41,10,52,12,"offset"],[41,16,52,18],[41,19,52,21],[41,23,52,25],[41,24,52,26,"tokenCount"],[41,34,52,36],[41,36,52,38],[42,8,53,12],[42,15,53,19,"cmpStr"],[42,21,53,25],[42,22,54,16],[42,26,54,20],[42,27,54,21,"source"],[42,33,54,27],[42,35,55,16],[42,39,55,20],[42,40,55,21,"offsetAndType"],[42,53,55,34],[42,54,55,35,"offset"],[42,60,55,41],[42,63,55,44],[42,64,55,45],[42,65,55,46],[42,68,55,49,"OFFSET_MASK"],[42,79,55,60],[42,81,56,16],[42,85,56,20],[42,86,56,21,"offsetAndType"],[42,99,56,34],[42,100,56,35,"offset"],[42,106,56,41],[42,107,56,42],[42,110,56,45,"OFFSET_MASK"],[42,121,56,56],[42,123,57,16,"referenceStr"],[42,135,58,12],[42,136,58,13],[43,6,59,8],[44,6,61,8],[44,13,61,15],[44,18,61,20],[45,4,62,4],[45,5,62,5],[46,4,63,4,"getTokenStart"],[46,17,63,17],[46,19,63,19],[46,28,63,19,"getTokenStart"],[46,29,63,28,"tokenIndex"],[46,39,63,38],[46,41,63,40],[47,6,64,8],[47,10,64,12,"tokenIndex"],[47,20,64,22],[47,25,64,27],[47,29,64,31],[47,30,64,32,"tokenIndex"],[47,40,64,42],[47,42,64,44],[48,8,65,12],[48,15,65,19],[48,19,65,23],[48,20,65,24,"tokenStart"],[48,30,65,34],[49,6,66,8],[50,6,68,8],[50,10,68,12,"tokenIndex"],[50,20,68,22],[50,23,68,25],[50,24,68,26],[50,26,68,28],[51,8,69,12],[51,15,69,19,"tokenIndex"],[51,25,69,29],[51,28,69,32],[51,32,69,36],[51,33,69,37,"tokenCount"],[51,43,69,47],[51,46,70,18],[51,50,70,22],[51,51,70,23,"offsetAndType"],[51,64,70,36],[51,65,70,37,"tokenIndex"],[51,75,70,47],[51,78,70,50],[51,79,70,51],[51,80,70,52],[51,83,70,55,"OFFSET_MASK"],[51,94,70,66],[51,97,71,18],[51,101,71,22],[51,102,71,23,"offsetAndType"],[51,115,71,36],[51,116,71,37],[51,120,71,41],[51,121,71,42,"tokenCount"],[51,131,71,52],[51,132,71,53],[51,135,71,56,"OFFSET_MASK"],[51,146,71,67],[52,6,72,8],[53,6,74,8],[53,13,74,15],[53,17,74,19],[53,18,74,20,"firstCharOffset"],[53,33,74,35],[54,4,75,4],[54,5,75,5],[55,4,77,4],[56,4,78,4,"getRawLength"],[56,16,78,16],[56,18,78,18],[56,27,78,18,"getRawLength"],[56,28,78,27,"startToken"],[56,38,78,37],[56,40,78,39,"mode"],[56,44,78,43],[56,46,78,45],[57,6,79,8],[57,10,79,12,"cursor"],[57,16,79,18],[57,19,79,21,"startToken"],[57,29,79,31],[58,6,80,8],[58,10,80,12,"balanceEnd"],[58,20,80,22],[59,6,81,8],[59,10,81,12,"offset"],[59,16,81,18],[59,19,81,21],[59,23,81,25],[59,24,81,26,"offsetAndType"],[59,37,81,39],[59,38,81,40,"Math"],[59,42,81,44],[59,43,81,45,"max"],[59,46,81,48],[59,47,81,49,"cursor"],[59,53,81,55],[59,56,81,58],[59,57,81,59],[59,59,81,61],[59,60,81,62],[59,61,81,63],[59,62,81,64],[59,65,81,67,"OFFSET_MASK"],[59,76,81,78],[60,6,82,8],[60,10,82,12,"type"],[60,14,82,16],[61,6,84,8,"loop"],[61,10,84,12],[61,12,85,8],[61,19,85,15,"cursor"],[61,25,85,21],[61,28,85,24],[61,32,85,28],[61,33,85,29,"tokenCount"],[61,43,85,39],[61,45,85,41,"cursor"],[61,51,85,47],[61,53,85,49],[61,55,85,51],[62,8,86,12,"balanceEnd"],[62,18,86,22],[62,21,86,25],[62,25,86,29],[62,26,86,30,"balance"],[62,33,86,37],[62,34,86,38,"cursor"],[62,40,86,44],[62,41,86,45],[64,8,88,12],[65,8,89,12],[65,12,89,16,"balanceEnd"],[65,22,89,26],[65,25,89,29,"startToken"],[65,35,89,39],[65,37,89,41],[66,10,90,16],[66,16,90,22,"loop"],[66,20,90,26],[67,8,91,12],[68,8,93,12,"type"],[68,12,93,16],[68,15,93,19],[68,19,93,23],[68,20,93,24,"offsetAndType"],[68,33,93,37],[68,34,93,38,"cursor"],[68,40,93,44],[68,41,93,45],[68,45,93,49,"TYPE_SHIFT"],[68,55,93,59],[70,8,95,12],[71,8,96,12],[71,16,96,20,"mode"],[71,20,96,24],[71,21,96,25,"type"],[71,25,96,29],[71,27,96,31],[71,31,96,35],[71,32,96,36,"source"],[71,38,96,42],[71,40,96,44,"offset"],[71,46,96,50],[71,47,96,51],[72,10,97,16],[72,15,97,21],[72,16,97,22],[73,12,98,20],[73,18,98,26,"loop"],[73,22,98,30],[74,10,100,16],[74,15,100,21],[74,16,100,22],[75,12,101,20,"cursor"],[75,18,101,26],[75,20,101,28],[76,12,102,20],[76,18,102,26,"loop"],[76,22,102,30],[77,10,104,16],[78,12,105,20],[79,12,106,20],[79,16,106,24],[79,20,106,28],[79,21,106,29,"balance"],[79,28,106,36],[79,29,106,37,"balanceEnd"],[79,39,106,47],[79,40,106,48],[79,45,106,53,"cursor"],[79,51,106,59],[79,53,106,61],[80,14,107,24,"cursor"],[80,20,107,30],[80,23,107,33,"balanceEnd"],[80,33,107,43],[81,12,108,20],[82,12,110,20,"offset"],[82,18,110,26],[82,21,110,29],[82,25,110,33],[82,26,110,34,"offsetAndType"],[82,39,110,47],[82,40,110,48,"cursor"],[82,46,110,54],[82,47,110,55],[82,50,110,58,"OFFSET_MASK"],[82,61,110,69],[83,8,111,12],[84,6,112,8],[85,6,114,8],[85,13,114,15,"cursor"],[85,19,114,21],[85,22,114,24],[85,26,114,28],[85,27,114,29,"tokenIndex"],[85,37,114,39],[86,4,115,4],[86,5,115,5],[87,4,116,4,"isBalanceEdge"],[87,17,116,17],[87,19,116,19],[87,28,116,19,"isBalanceEdge"],[87,29,116,28,"pos"],[87,32,116,31],[87,34,116,33],[88,6,117,8],[88,13,117,15],[88,17,117,19],[88,18,117,20,"balance"],[88,25,117,27],[88,26,117,28],[88,30,117,32],[88,31,117,33,"tokenIndex"],[88,41,117,43],[88,42,117,44],[88,45,117,47,"pos"],[88,48,117,50],[89,4,118,4],[89,5,118,5],[90,4,119,4,"isDelim"],[90,11,119,11],[90,13,119,13],[90,22,119,13,"isDelim"],[90,23,119,22,"code"],[90,27,119,26],[90,29,119,28,"offset"],[90,35,119,34],[90,37,119,36],[91,6,120,8],[91,10,120,12,"offset"],[91,16,120,18],[91,18,120,20],[92,8,121,12],[92,15,122,16],[92,19,122,20],[92,20,122,21,"lookupType"],[92,30,122,31],[92,31,122,32,"offset"],[92,37,122,38],[92,38,122,39],[92,43,122,44,"TYPE"],[92,47,122,48],[92,48,122,49,"Delim"],[92,53,122,54],[92,57,123,16],[92,61,123,20],[92,62,123,21,"source"],[92,68,123,27],[92,69,123,28,"charCodeAt"],[92,79,123,38],[92,80,123,39],[92,84,123,43],[92,85,123,44,"lookupOffset"],[92,97,123,56],[92,98,123,57,"offset"],[92,104,123,63],[92,105,123,64],[92,106,123,65],[92,111,123,70,"code"],[92,115,123,74],[93,6,125,8],[94,6,127,8],[94,13,128,12],[94,17,128,16],[94,18,128,17,"tokenType"],[94,27,128,26],[94,32,128,31,"TYPE"],[94,36,128,35],[94,37,128,36,"Delim"],[94,42,128,41],[94,46,129,12],[94,50,129,16],[94,51,129,17,"source"],[94,57,129,23],[94,58,129,24,"charCodeAt"],[94,68,129,34],[94,69,129,35],[94,73,129,39],[94,74,129,40,"tokenStart"],[94,84,129,50],[94,85,129,51],[94,90,129,56,"code"],[94,94,129,60],[95,4,131,4],[95,5,131,5],[96,4,133,4,"getTokenValue"],[96,17,133,17],[96,19,133,19],[96,28,133,19,"getTokenValue"],[96,29,133,19],[96,31,133,30],[97,6,134,8],[97,13,134,15],[97,17,134,19],[97,18,134,20,"source"],[97,24,134,26],[97,25,134,27,"substring"],[97,34,134,36],[97,35,134,37],[97,39,134,41],[97,40,134,42,"tokenStart"],[97,50,134,52],[97,52,134,54],[97,56,134,58],[97,57,134,59,"tokenEnd"],[97,65,134,67],[97,66,134,68],[98,4,135,4],[98,5,135,5],[99,4,136,4,"getTokenLength"],[99,18,136,18],[99,20,136,20],[99,29,136,20,"getTokenLength"],[99,30,136,20],[99,32,136,31],[100,6,137,8],[100,13,137,15],[100,17,137,19],[100,18,137,20,"tokenEnd"],[100,26,137,28],[100,29,137,31],[100,33,137,35],[100,34,137,36,"tokenStart"],[100,44,137,46],[101,4,138,4],[101,5,138,5],[102,4,139,4,"substrToCursor"],[102,18,139,18],[102,20,139,20],[102,29,139,20,"substrToCursor"],[102,30,139,29,"start"],[102,35,139,34],[102,37,139,36],[103,6,140,8],[103,13,140,15],[103,17,140,19],[103,18,140,20,"source"],[103,24,140,26],[103,25,140,27,"substring"],[103,34,140,36],[103,35,140,37,"start"],[103,40,140,42],[103,42,140,44],[103,46,140,48],[103,47,140,49,"tokenStart"],[103,57,140,59],[103,58,140,60],[104,4,141,4],[104,5,141,5],[105,4,143,4,"skipWS"],[105,10,143,10],[105,12,143,12],[105,21,143,12,"skipWS"],[105,22,143,12],[105,24,143,23],[106,6,144,8],[106,11,144,13],[106,15,144,17,"i"],[106,16,144,18],[106,19,144,21],[106,23,144,25],[106,24,144,26,"tokenIndex"],[106,34,144,36],[106,36,144,38,"skipTokenCount"],[106,50,144,52],[106,53,144,55],[106,54,144,56],[106,56,144,58,"i"],[106,57,144,59],[106,60,144,62],[106,64,144,66],[106,65,144,67,"tokenCount"],[106,75,144,77],[106,77,144,79,"i"],[106,78,144,80],[106,80,144,82],[106,82,144,84,"skipTokenCount"],[106,96,144,98],[106,98,144,100],[106,100,144,102],[107,8,145,12],[107,12,145,17],[107,16,145,21],[107,17,145,22,"offsetAndType"],[107,30,145,35],[107,31,145,36,"i"],[107,32,145,37],[107,33,145,38],[107,37,145,42,"TYPE_SHIFT"],[107,47,145,52],[107,52,145,58,"WHITESPACE"],[107,62,145,68],[107,64,145,70],[108,10,146,16],[109,8,147,12],[110,6,148,8],[111,6,150,8],[111,10,150,12,"skipTokenCount"],[111,24,150,26],[111,27,150,29],[111,28,150,30],[111,30,150,32],[112,8,151,12],[112,12,151,16],[112,13,151,17,"skip"],[112,17,151,21],[112,18,151,22,"skipTokenCount"],[112,32,151,36],[112,33,151,37],[113,6,152,8],[114,4,153,4],[114,5,153,5],[115,4,154,4,"skipSC"],[115,10,154,10],[115,12,154,12],[115,21,154,12,"skipSC"],[115,22,154,12],[115,24,154,23],[116,6,155,8],[116,13,155,15],[116,17,155,19],[116,18,155,20,"tokenType"],[116,27,155,29],[116,32,155,34,"WHITESPACE"],[116,42,155,44],[116,46,155,48],[116,50,155,52],[116,51,155,53,"tokenType"],[116,60,155,62],[116,65,155,67,"COMMENT"],[116,72,155,74],[116,74,155,76],[117,8,156,12],[117,12,156,16],[117,13,156,17,"next"],[117,17,156,21],[117,18,156,22],[117,19,156,23],[118,6,157,8],[119,4,158,4],[119,5,158,5],[120,4,159,4,"skip"],[120,8,159,8],[120,10,159,10],[120,19,159,10,"skip"],[120,20,159,19,"tokenCount"],[120,30,159,29],[120,32,159,31],[121,6,160,8],[121,10,160,12,"next"],[121,14,160,16],[121,17,160,19],[121,21,160,23],[121,22,160,24,"tokenIndex"],[121,32,160,34],[121,35,160,37,"tokenCount"],[121,45,160,47],[122,6,162,8],[122,10,162,12,"next"],[122,14,162,16],[122,17,162,19],[122,21,162,23],[122,22,162,24,"tokenCount"],[122,32,162,34],[122,34,162,36],[123,8,163,12],[123,12,163,16],[123,13,163,17,"tokenIndex"],[123,23,163,27],[123,26,163,30,"next"],[123,30,163,34],[124,8,164,12],[124,12,164,16],[124,13,164,17,"tokenStart"],[124,23,164,27],[124,26,164,30],[124,30,164,34],[124,31,164,35,"offsetAndType"],[124,44,164,48],[124,45,164,49,"next"],[124,49,164,53],[124,52,164,56],[124,53,164,57],[124,54,164,58],[124,57,164,61,"OFFSET_MASK"],[124,68,164,72],[125,8,165,12,"next"],[125,12,165,16],[125,15,165,19],[125,19,165,23],[125,20,165,24,"offsetAndType"],[125,33,165,37],[125,34,165,38,"next"],[125,38,165,42],[125,39,165,43],[126,8,166,12],[126,12,166,16],[126,13,166,17,"tokenType"],[126,22,166,26],[126,25,166,29,"next"],[126,29,166,33],[126,33,166,37,"TYPE_SHIFT"],[126,43,166,47],[127,8,167,12],[127,12,167,16],[127,13,167,17,"tokenEnd"],[127,21,167,25],[127,24,167,28,"next"],[127,28,167,32],[127,31,167,35,"OFFSET_MASK"],[127,42,167,46],[128,6,168,8],[128,7,168,9],[128,13,168,15],[129,8,169,12],[129,12,169,16],[129,13,169,17,"tokenIndex"],[129,23,169,27],[129,26,169,30],[129,30,169,34],[129,31,169,35,"tokenCount"],[129,41,169,45],[130,8,170,12],[130,12,170,16],[130,13,170,17,"next"],[130,17,170,21],[130,18,170,22],[130,19,170,23],[131,6,171,8],[132,4,172,4],[132,5,172,5],[133,4,173,4,"next"],[133,8,173,8],[133,10,173,10],[133,19,173,10,"next"],[133,20,173,10],[133,22,173,21],[134,6,174,8],[134,10,174,12,"next"],[134,14,174,16],[134,17,174,19],[134,21,174,23],[134,22,174,24,"tokenIndex"],[134,32,174,34],[134,35,174,37],[134,36,174,38],[135,6,176,8],[135,10,176,12,"next"],[135,14,176,16],[135,17,176,19],[135,21,176,23],[135,22,176,24,"tokenCount"],[135,32,176,34],[135,34,176,36],[136,8,177,12],[136,12,177,16],[136,13,177,17,"tokenIndex"],[136,23,177,27],[136,26,177,30,"next"],[136,30,177,34],[137,8,178,12],[137,12,178,16],[137,13,178,17,"tokenStart"],[137,23,178,27],[137,26,178,30],[137,30,178,34],[137,31,178,35,"tokenEnd"],[137,39,178,43],[138,8,179,12,"next"],[138,12,179,16],[138,15,179,19],[138,19,179,23],[138,20,179,24,"offsetAndType"],[138,33,179,37],[138,34,179,38,"next"],[138,38,179,42],[138,39,179,43],[139,8,180,12],[139,12,180,16],[139,13,180,17,"tokenType"],[139,22,180,26],[139,25,180,29,"next"],[139,29,180,33],[139,33,180,37,"TYPE_SHIFT"],[139,43,180,47],[140,8,181,12],[140,12,181,16],[140,13,181,17,"tokenEnd"],[140,21,181,25],[140,24,181,28,"next"],[140,28,181,32],[140,31,181,35,"OFFSET_MASK"],[140,42,181,46],[141,6,182,8],[141,7,182,9],[141,13,182,15],[142,8,183,12],[142,12,183,16],[142,13,183,17,"tokenIndex"],[142,23,183,27],[142,26,183,30],[142,30,183,34],[142,31,183,35,"tokenCount"],[142,41,183,45],[143,8,184,12],[143,12,184,16],[143,13,184,17,"eof"],[143,16,184,20],[143,19,184,23],[143,23,184,27],[144,8,185,12],[144,12,185,16],[144,13,185,17,"tokenType"],[144,22,185,26],[144,25,185,29,"EOF"],[144,28,185,32],[145,8,186,12],[145,12,186,16],[145,13,186,17,"tokenStart"],[145,23,186,27],[145,26,186,30],[145,30,186,34],[145,31,186,35,"tokenEnd"],[145,39,186,43],[145,42,186,46],[145,46,186,50],[145,47,186,51,"source"],[145,53,186,57],[145,54,186,58,"length"],[145,60,186,64],[146,6,187,8],[147,4,188,4],[147,5,188,5],[148,4,190,4,"forEachToken"],[148,16,190,16,"forEachToken"],[148,17,190,17,"fn"],[148,19,190,19],[148,21,190,21],[149,6,191,8],[149,11,191,13],[149,15,191,17,"i"],[149,16,191,18],[149,19,191,21],[149,20,191,22],[149,22,191,24,"offset"],[149,28,191,30],[149,31,191,33],[149,35,191,37],[149,36,191,38,"firstCharOffset"],[149,51,191,53],[149,53,191,55,"i"],[149,54,191,56],[149,57,191,59],[149,61,191,63],[149,62,191,64,"tokenCount"],[149,72,191,74],[149,74,191,76,"i"],[149,75,191,77],[149,77,191,79],[149,79,191,81],[150,8,192,12],[150,12,192,16,"start"],[150,17,192,21],[150,20,192,24,"offset"],[150,26,192,30],[151,8,193,12],[151,12,193,16,"item"],[151,16,193,20],[151,19,193,23],[151,23,193,27],[151,24,193,28,"offsetAndType"],[151,37,193,41],[151,38,193,42,"i"],[151,39,193,43],[151,40,193,44],[152,8,194,12],[152,12,194,16,"end"],[152,15,194,19],[152,18,194,22,"item"],[152,22,194,26],[152,25,194,29,"OFFSET_MASK"],[152,36,194,40],[153,8,195,12],[153,12,195,16,"type"],[153,16,195,20],[153,19,195,23,"item"],[153,23,195,27],[153,27,195,31,"TYPE_SHIFT"],[153,37,195,41],[154,8,197,12,"offset"],[154,14,197,18],[154,17,197,21,"end"],[154,20,197,24],[155,8,199,12,"fn"],[155,10,199,14],[155,11,199,15,"type"],[155,15,199,19],[155,17,199,21,"start"],[155,22,199,26],[155,24,199,28,"end"],[155,27,199,31],[155,29,199,33,"i"],[155,30,199,34],[155,31,199,35],[156,6,200,8],[157,4,201,4],[157,5,201,5],[158,4,203,4,"dump"],[158,8,203,8,"dump"],[158,9,203,8],[158,11,203,11],[159,6,204,8],[159,10,204,12,"tokens"],[159,16,204,18],[159,19,204,21],[159,23,204,25,"Array"],[159,28,204,30],[159,29,204,31],[159,33,204,35],[159,34,204,36,"tokenCount"],[159,44,204,46],[159,45,204,47],[160,6,206,8],[160,10,206,12],[160,11,206,13,"forEachToken"],[160,23,206,25],[160,24,206,26],[160,25,206,27,"type"],[160,29,206,31],[160,31,206,33,"start"],[160,36,206,38],[160,38,206,40,"end"],[160,41,206,43],[160,43,206,45,"index"],[160,48,206,50],[160,53,206,55],[161,8,207,12,"tokens"],[161,14,207,18],[161,15,207,19,"index"],[161,20,207,24],[161,21,207,25],[161,24,207,28],[162,10,208,16,"idx"],[162,13,208,19],[162,15,208,21,"index"],[162,20,208,26],[163,10,209,16,"type"],[163,14,209,20],[163,16,209,22,"NAME"],[163,20,209,26],[163,21,209,27,"type"],[163,25,209,31],[163,26,209,32],[164,10,210,16,"chunk"],[164,15,210,21],[164,17,210,23],[164,21,210,27],[164,22,210,28,"source"],[164,28,210,34],[164,29,210,35,"substring"],[164,38,210,44],[164,39,210,45,"start"],[164,44,210,50],[164,46,210,52,"end"],[164,49,210,55],[164,50,210,56],[165,10,211,16,"balance"],[165,17,211,23],[165,19,211,25],[165,23,211,29],[165,24,211,30,"balance"],[165,31,211,37],[165,32,211,38,"index"],[165,37,211,43],[166,8,212,12],[166,9,212,13],[167,6,213,8],[167,7,213,9],[167,8,213,10],[168,6,215,8],[168,13,215,15,"tokens"],[168,19,215,21],[169,4,216,4],[170,2,217,0],[170,3,217,1],[171,2,219,0,"module"],[171,8,219,6],[171,9,219,7,"exports"],[171,16,219,14],[171,19,219,17,"TokenStream"],[171,30,219,28],[172,0,219,29],[172,3]],"functionMap":{"names":["<global>","TokenStream","prototype.reset","prototype.lookupType","prototype.lookupOffset","prototype.lookupValue","prototype.getTokenStart","prototype.getRawLength","prototype.isBalanceEdge","prototype.isDelim","prototype.getTokenValue","prototype.getTokenLength","prototype.substrToCursor","prototype.skipWS","prototype.skipSC","prototype.skip","prototype.next","prototype.forEachToken","prototype.dump","forEachToken$argument_0"],"mappings":"AAA;kBCc;CDK;WEG;KFM;gBGE;KHQ;kBIC;KJQ;iBKC;KLa;mBMC;KNY;kBOG;KPqC;mBQC;KRE;aSC;KTY;mBUE;KVE;oBWC;KXE;oBYC;KZE;YaE;KbU;YcC;KdI;UeC;Kfa;UgBC;KhBe;IiBE;KjBW;IkBE;0BCG;SDO;KlBG"},"hasCjsExports":true},"type":"js/module"}]} |