mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-05-30 06:31:03 +00:00
1 line
7.6 KiB
Plaintext
1 line
7.6 KiB
Plaintext
{"dependencies":[{"name":"./SyntaxError","data":{"asyncType":null,"isESMImport":false,"locs":[{"start":{"line":1,"column":18,"index":18},"end":{"line":1,"column":42,"index":42}}],"key":"kdtgVNlMBBZU0cinl+rngaJsPco=","exportNames":["*"],"imports":1}}],"output":[{"data":{"code":"__d(function (global, require, _$$_IMPORT_DEFAULT, _$$_IMPORT_ALL, module, exports, _dependencyMap) {\n var SyntaxError = require(_dependencyMap[0], \"./SyntaxError\");\n var TAB = 9;\n var N = 10;\n var F = 12;\n var R = 13;\n var SPACE = 32;\n var Tokenizer = function (str) {\n this.str = str;\n this.pos = 0;\n };\n Tokenizer.prototype = {\n charCodeAt: function (pos) {\n return pos < this.str.length ? this.str.charCodeAt(pos) : 0;\n },\n charCode: function () {\n return this.charCodeAt(this.pos);\n },\n nextCharCode: function () {\n return this.charCodeAt(this.pos + 1);\n },\n nextNonWsCode: function (pos) {\n return this.charCodeAt(this.findWsEnd(pos));\n },\n findWsEnd: function (pos) {\n for (; pos < this.str.length; pos++) {\n var code = this.str.charCodeAt(pos);\n if (code !== R && code !== N && code !== F && code !== SPACE && code !== TAB) {\n break;\n }\n }\n return pos;\n },\n substringToPos: function (end) {\n return this.str.substring(this.pos, this.pos = end);\n },\n eat: function (code) {\n if (this.charCode() !== code) {\n this.error('Expect `' + String.fromCharCode(code) + '`');\n }\n this.pos++;\n },\n peek: function () {\n return this.pos < this.str.length ? this.str.charAt(this.pos++) : '';\n },\n error: function (message) {\n throw new SyntaxError(message, this.str, this.pos);\n }\n };\n module.exports = Tokenizer;\n});","lineCount":51,"map":[[2,2,1,0],[2,6,1,4,"SyntaxError"],[2,17,1,15],[2,20,1,18,"require"],[2,27,1,25],[2,28,1,25,"_dependencyMap"],[2,42,1,25],[2,62,1,41],[2,63,1,42],[3,2,3,0],[3,6,3,4,"TAB"],[3,9,3,7],[3,12,3,10],[3,13,3,11],[4,2,4,0],[4,6,4,4,"N"],[4,7,4,5],[4,10,4,8],[4,12,4,10],[5,2,5,0],[5,6,5,4,"F"],[5,7,5,5],[5,10,5,8],[5,12,5,10],[6,2,6,0],[6,6,6,4,"R"],[6,7,6,5],[6,10,6,8],[6,12,6,10],[7,2,7,0],[7,6,7,4,"SPACE"],[7,11,7,9],[7,14,7,12],[7,16,7,14],[8,2,9,0],[8,6,9,4,"Tokenizer"],[8,15,9,13],[8,18,9,16],[8,27,9,16,"Tokenizer"],[8,28,9,25,"str"],[8,31,9,28],[8,33,9,30],[9,4,10,4],[9,8,10,8],[9,9,10,9,"str"],[9,12,10,12],[9,15,10,15,"str"],[9,18,10,18],[10,4,11,4],[10,8,11,8],[10,9,11,9,"pos"],[10,12,11,12],[10,15,11,15],[10,16,11,16],[11,2,12,0],[11,3,12,1],[12,2,14,0,"Tokenizer"],[12,11,14,9],[12,12,14,10,"prototype"],[12,21,14,19],[12,24,14,22],[13,4,15,4,"charCodeAt"],[13,14,15,14],[13,16,15,16],[13,25,15,16,"charCodeAt"],[13,26,15,25,"pos"],[13,29,15,28],[13,31,15,30],[14,6,16,8],[14,13,16,15,"pos"],[14,16,16,18],[14,19,16,21],[14,23,16,25],[14,24,16,26,"str"],[14,27,16,29],[14,28,16,30,"length"],[14,34,16,36],[14,37,16,39],[14,41,16,43],[14,42,16,44,"str"],[14,45,16,47],[14,46,16,48,"charCodeAt"],[14,56,16,58],[14,57,16,59,"pos"],[14,60,16,62],[14,61,16,63],[14,64,16,66],[14,65,16,67],[15,4,17,4],[15,5,17,5],[16,4,18,4,"charCode"],[16,12,18,12],[16,14,18,14],[16,23,18,14,"charCode"],[16,24,18,14],[16,26,18,25],[17,6,19,8],[17,13,19,15],[17,17,19,19],[17,18,19,20,"charCodeAt"],[17,28,19,30],[17,29,19,31],[17,33,19,35],[17,34,19,36,"pos"],[17,37,19,39],[17,38,19,40],[18,4,20,4],[18,5,20,5],[19,4,21,4,"nextCharCode"],[19,16,21,16],[19,18,21,18],[19,27,21,18,"nextCharCode"],[19,28,21,18],[19,30,21,29],[20,6,22,8],[20,13,22,15],[20,17,22,19],[20,18,22,20,"charCodeAt"],[20,28,22,30],[20,29,22,31],[20,33,22,35],[20,34,22,36,"pos"],[20,37,22,39],[20,40,22,42],[20,41,22,43],[20,42,22,44],[21,4,23,4],[21,5,23,5],[22,4,24,4,"nextNonWsCode"],[22,17,24,17],[22,19,24,19],[22,28,24,19,"nextNonWsCode"],[22,29,24,28,"pos"],[22,32,24,31],[22,34,24,33],[23,6,25,8],[23,13,25,15],[23,17,25,19],[23,18,25,20,"charCodeAt"],[23,28,25,30],[23,29,25,31],[23,33,25,35],[23,34,25,36,"findWsEnd"],[23,43,25,45],[23,44,25,46,"pos"],[23,47,25,49],[23,48,25,50],[23,49,25,51],[24,4,26,4],[24,5,26,5],[25,4,27,4,"findWsEnd"],[25,13,27,13],[25,15,27,15],[25,24,27,15,"findWsEnd"],[25,25,27,24,"pos"],[25,28,27,27],[25,30,27,29],[26,6,28,8],[26,13,28,15,"pos"],[26,16,28,18],[26,19,28,21],[26,23,28,25],[26,24,28,26,"str"],[26,27,28,29],[26,28,28,30,"length"],[26,34,28,36],[26,36,28,38,"pos"],[26,39,28,41],[26,41,28,43],[26,43,28,45],[27,8,29,12],[27,12,29,16,"code"],[27,16,29,20],[27,19,29,23],[27,23,29,27],[27,24,29,28,"str"],[27,27,29,31],[27,28,29,32,"charCodeAt"],[27,38,29,42],[27,39,29,43,"pos"],[27,42,29,46],[27,43,29,47],[28,8,30,12],[28,12,30,16,"code"],[28,16,30,20],[28,21,30,25,"R"],[28,22,30,26],[28,26,30,30,"code"],[28,30,30,34],[28,35,30,39,"N"],[28,36,30,40],[28,40,30,44,"code"],[28,44,30,48],[28,49,30,53,"F"],[28,50,30,54],[28,54,30,58,"code"],[28,58,30,62],[28,63,30,67,"SPACE"],[28,68,30,72],[28,72,30,76,"code"],[28,76,30,80],[28,81,30,85,"TAB"],[28,84,30,88],[28,86,30,90],[29,10,31,16],[30,8,32,12],[31,6,33,8],[32,6,35,8],[32,13,35,15,"pos"],[32,16,35,18],[33,4,36,4],[33,5,36,5],[34,4,37,4,"substringToPos"],[34,18,37,18],[34,20,37,20],[34,29,37,20,"substringToPos"],[34,30,37,29,"end"],[34,33,37,32],[34,35,37,34],[35,6,38,8],[35,13,38,15],[35,17,38,19],[35,18,38,20,"str"],[35,21,38,23],[35,22,38,24,"substring"],[35,31,38,33],[35,32,38,34],[35,36,38,38],[35,37,38,39,"pos"],[35,40,38,42],[35,42,38,44],[35,46,38,48],[35,47,38,49,"pos"],[35,50,38,52],[35,53,38,55,"end"],[35,56,38,58],[35,57,38,59],[36,4,39,4],[36,5,39,5],[37,4,40,4,"eat"],[37,7,40,7],[37,9,40,9],[37,18,40,9,"eat"],[37,19,40,18,"code"],[37,23,40,22],[37,25,40,24],[38,6,41,8],[38,10,41,12],[38,14,41,16],[38,15,41,17,"charCode"],[38,23,41,25],[38,24,41,26],[38,25,41,27],[38,30,41,32,"code"],[38,34,41,36],[38,36,41,38],[39,8,42,12],[39,12,42,16],[39,13,42,17,"error"],[39,18,42,22],[39,19,42,23],[39,29,42,33],[39,32,42,36,"String"],[39,38,42,42],[39,39,42,43,"fromCharCode"],[39,51,42,55],[39,52,42,56,"code"],[39,56,42,60],[39,57,42,61],[39,60,42,64],[39,63,42,67],[39,64,42,68],[40,6,43,8],[41,6,45,8],[41,10,45,12],[41,11,45,13,"pos"],[41,14,45,16],[41,16,45,18],[42,4,46,4],[42,5,46,5],[43,4,47,4,"peek"],[43,8,47,8],[43,10,47,10],[43,19,47,10,"peek"],[43,20,47,10],[43,22,47,21],[44,6,48,8],[44,13,48,15],[44,17,48,19],[44,18,48,20,"pos"],[44,21,48,23],[44,24,48,26],[44,28,48,30],[44,29,48,31,"str"],[44,32,48,34],[44,33,48,35,"length"],[44,39,48,41],[44,42,48,44],[44,46,48,48],[44,47,48,49,"str"],[44,50,48,52],[44,51,48,53,"charAt"],[44,57,48,59],[44,58,48,60],[44,62,48,64],[44,63,48,65,"pos"],[44,66,48,68],[44,68,48,70],[44,69,48,71],[44,72,48,74],[44,74,48,76],[45,4,49,4],[45,5,49,5],[46,4,50,4,"error"],[46,9,50,9],[46,11,50,11],[46,20,50,11,"error"],[46,21,50,20,"message"],[46,28,50,27],[46,30,50,29],[47,6,51,8],[47,12,51,14],[47,16,51,18,"SyntaxError"],[47,27,51,29],[47,28,51,30,"message"],[47,35,51,37],[47,37,51,39],[47,41,51,43],[47,42,51,44,"str"],[47,45,51,47],[47,47,51,49],[47,51,51,53],[47,52,51,54,"pos"],[47,55,51,57],[47,56,51,58],[48,4,52,4],[49,2,53,0],[49,3,53,1],[50,2,55,0,"module"],[50,8,55,6],[50,9,55,7,"exports"],[50,16,55,14],[50,19,55,17,"Tokenizer"],[50,28,55,26],[51,0,55,27],[51,3]],"functionMap":{"names":["<global>","Tokenizer","Tokenizer.prototype.charCodeAt","Tokenizer.prototype.charCode","Tokenizer.prototype.nextCharCode","Tokenizer.prototype.nextNonWsCode","Tokenizer.prototype.findWsEnd","Tokenizer.prototype.substringToPos","Tokenizer.prototype.eat","Tokenizer.prototype.peek","Tokenizer.prototype.error"],"mappings":"AAA;gBCQ;CDG;gBEG;KFE;cGC;KHE;kBIC;KJE;mBKC;KLE;eMC;KNS;oBOC;KPE;SQC;KRM;USC;KTE;WUC;KVE"},"hasCjsExports":true},"type":"js/module"}]} |