parser.js 105 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. define(['./boot'], function($boot) {
  2. var $globals = $boot.globals;
  3. $globals.SmalltalkParser = (function() {
  4. "use strict";
  5. /*
  6. * Generated by PEG.js 0.9.0.
  7. *
  8. * http://pegjs.org/
  9. */
  10. function peg$subclass(child, parent) {
  11. function ctor() { this.constructor = child; }
  12. ctor.prototype = parent.prototype;
  13. child.prototype = new ctor();
  14. }
  15. function peg$SyntaxError(message, expected, found, location) {
  16. this.message = message;
  17. this.expected = expected;
  18. this.found = found;
  19. this.location = location;
  20. this.name = "SyntaxError";
  21. if (typeof Error.captureStackTrace === "function") {
  22. Error.captureStackTrace(this, peg$SyntaxError);
  23. }
  24. }
  25. peg$subclass(peg$SyntaxError, Error);
  26. function peg$parse(input) {
  27. var options = arguments.length > 1 ? arguments[1] : {},
  28. parser = this,
  29. peg$FAILED = {},
  30. peg$startRuleFunctions = { start: peg$parsestart },
  31. peg$startRuleFunction = peg$parsestart,
  32. peg$c0 = /^[ \t\x0B\f\xA0\u1680\u2000-\u200A\u202F\u205F\u3000\uFEFF\n\r\u2028\u2029]/,
  33. peg$c1 = { type: "class", value: "[ \\t\\v\\f\\u00A0\\u1680\\u2000-\\u200A\\u202F\\u205F\\u3000\\uFEFF\\n\\r\\u2028\\u2029]", description: "[ \\t\\v\\f\\u00A0\\u1680\\u2000-\\u200A\\u202F\\u205F\\u3000\\uFEFF\\n\\r\\u2028\\u2029]" },
  34. peg$c2 = "\"",
  35. peg$c3 = { type: "literal", value: "\"", description: "\"\\\"\"" },
  36. peg$c4 = /^[^"]/,
  37. peg$c5 = { type: "class", value: "[^\"]", description: "[^\"]" },
  38. peg$c6 = ".",
  39. peg$c7 = { type: "literal", value: ".", description: "\".\"" },
  40. peg$c8 = /^[a-zA-Z]/,
  41. peg$c9 = { type: "class", value: "[a-zA-Z]", description: "[a-zA-Z]" },
  42. peg$c10 = /^[a-zA-Z0-9]/,
  43. peg$c11 = { type: "class", value: "[a-zA-Z0-9]", description: "[a-zA-Z0-9]" },
  44. peg$c12 = ":",
  45. peg$c13 = { type: "literal", value: ":", description: "\":\"" },
  46. peg$c14 = /^[A-Z]/,
  47. peg$c15 = { type: "class", value: "[A-Z]", description: "[A-Z]" },
  48. peg$c16 = function(val) {
  49. return $globals.ValueNode._new()
  50. ._location_(location())
  51. ._source_(text())
  52. ._value_(val);
  53. },
  54. peg$c17 = "'",
  55. peg$c18 = { type: "literal", value: "'", description: "\"'\"" },
  56. peg$c19 = "''",
  57. peg$c20 = { type: "literal", value: "''", description: "\"''\"" },
  58. peg$c21 = function() {return '\'';},
  59. peg$c22 = /^[^']/,
  60. peg$c23 = { type: "class", value: "[^']", description: "[^']" },
  61. peg$c24 = function(val) {return val.join('');},
  62. peg$c25 = "$",
  63. peg$c26 = { type: "literal", value: "$", description: "\"$\"" },
  64. peg$c27 = { type: "any", description: "any character" },
  65. peg$c28 = function(char) {
  66. return $globals.ValueNode._new()
  67. ._location_(location())
  68. ._source_(text())
  69. ._value_(char);
  70. },
  71. peg$c29 = "#",
  72. peg$c30 = { type: "literal", value: "#", description: "\"#\"" },
  73. peg$c31 = function(rest) {return rest;},
  74. peg$c32 = "e",
  75. peg$c33 = { type: "literal", value: "e", description: "\"e\"" },
  76. peg$c34 = function(n) {return parseFloat(n);},
  77. peg$c35 = "-",
  78. peg$c36 = { type: "literal", value: "-", description: "\"-\"" },
  79. peg$c37 = "16r",
  80. peg$c38 = { type: "literal", value: "16r", description: "\"16r\"" },
  81. peg$c39 = /^[0-9a-fA-F]/,
  82. peg$c40 = { type: "class", value: "[0-9a-fA-F]", description: "[0-9a-fA-F]" },
  83. peg$c41 = function(neg, num) {
  84. return parseInt(((neg || '') + num), 16);
  85. },
  86. peg$c42 = /^[0-9]/,
  87. peg$c43 = { type: "class", value: "[0-9]", description: "[0-9]" },
  88. peg$c44 = function(n) {return parseFloat(n, 10);},
  89. peg$c45 = function(n) {return parseInt(n, 10);},
  90. peg$c46 = "#(",
  91. peg$c47 = { type: "literal", value: "#(", description: "\"#(\"" },
  92. peg$c48 = ")",
  93. peg$c49 = { type: "literal", value: ")", description: "\")\"" },
  94. peg$c50 = function(rest) {
  95. return rest
  96. ._location_(location())
  97. ._source_(text());
  98. },
  99. peg$c51 = "(",
  100. peg$c52 = { type: "literal", value: "(", description: "\"(\"" },
  101. peg$c53 = function(lit) {return lit._value();},
  102. peg$c54 = function(lits) {
  103. return $globals.ValueNode._new()
  104. ._value_(lits);
  105. },
  106. peg$c55 = "{",
  107. peg$c56 = { type: "literal", value: "{", description: "\"{\"" },
  108. peg$c57 = "}",
  109. peg$c58 = { type: "literal", value: "}", description: "\"}\"" },
  110. peg$c59 = function(expressions) {
  111. return $globals.DynamicArrayNode._new()
  112. ._location_(location())
  113. ._source_(text())
  114. ._dagChildren_(expressions || []);
  115. },
  116. peg$c60 = "#{",
  117. peg$c61 = { type: "literal", value: "#{", description: "\"#{\"" },
  118. peg$c62 = function(expressions) {
  119. return $globals.DynamicDictionaryNode._new()
  120. ._location_(location())
  121. ._source_(text())
  122. ._dagChildren_(expressions || []);
  123. },
  124. peg$c63 = "true",
  125. peg$c64 = { type: "literal", value: "true", description: "\"true\"" },
  126. peg$c65 = function() {return true;},
  127. peg$c66 = "false",
  128. peg$c67 = { type: "literal", value: "false", description: "\"false\"" },
  129. peg$c68 = function() {return false;},
  130. peg$c69 = "nil",
  131. peg$c70 = { type: "literal", value: "nil", description: "\"nil\"" },
  132. peg$c71 = function() {return null;},
  133. peg$c72 = function(identifier) {
  134. return $globals.VariableNode._new()
  135. ._location_(location())
  136. ._source_(text())
  137. ._value_(identifier);
  138. },
  139. peg$c73 = /^[\\+*\/=><,@%~|&\-]/,
  140. peg$c74 = { type: "class", value: "[\\\\+*/=><,@%~|&-]", description: "[\\\\+*/=><,@%~|&-]" },
  141. peg$c75 = function(key, arg) {return {key:key, arg:arg};},
  142. peg$c76 = function(pairs) {
  143. var selector = '';
  144. var params = [];
  145. for(var i = 0; i < pairs.length; i++) {
  146. selector += pairs[i].key;
  147. params.push(pairs[i].arg);
  148. }
  149. return [selector, params];
  150. },
  151. peg$c77 = function(selector, arg) {
  152. return [selector, [arg]];
  153. },
  154. peg$c78 = function(selector) {return [selector, []];},
  155. peg$c79 = function(expression) {
  156. return expression;
  157. },
  158. peg$c80 = function(first, others) {
  159. return [first].concat(others);
  160. },
  161. peg$c81 = ":=",
  162. peg$c82 = { type: "literal", value: ":=", description: "\":=\"" },
  163. peg$c83 = function(variable, expression) {
  164. return $globals.AssignmentNode._new()
  165. ._location_(location())
  166. ._source_(text())
  167. ._left_(variable)
  168. ._right_(expression);
  169. },
  170. peg$c84 = "^",
  171. peg$c85 = { type: "literal", value: "^", description: "\"^\"" },
  172. peg$c86 = function(expression) {
  173. return $globals.ReturnNode._new()
  174. ._location_(location())
  175. ._source_(text())
  176. ._dagChildren_([expression]);
  177. },
  178. peg$c87 = "|",
  179. peg$c88 = { type: "literal", value: "|", description: "\"|\"" },
  180. peg$c89 = function(variable) {return variable;},
  181. peg$c90 = function(vars) {
  182. return vars;
  183. },
  184. peg$c91 = function(param) {return param;},
  185. peg$c92 = function(params) {
  186. return params;
  187. },
  188. peg$c93 = function(ret) {return [ret];},
  189. peg$c94 = function(exps, ret) {
  190. var expressions = exps;
  191. expressions.push(ret);
  192. return expressions;
  193. },
  194. peg$c95 = function(expressions) {return expressions || [];},
  195. peg$c96 = function(js) {return js;},
  196. peg$c97 = function(temps, statements) {
  197. return $globals.SequenceNode._new()
  198. ._location_(location())
  199. ._source_(text())
  200. ._temps_(temps || [])
  201. ._dagChildren_(statements || []);
  202. },
  203. peg$c98 = "[",
  204. peg$c99 = { type: "literal", value: "[", description: "\"[\"" },
  205. peg$c100 = "]",
  206. peg$c101 = { type: "literal", value: "]", description: "\"]\"" },
  207. peg$c102 = function(params, sequence) {
  208. return $globals.BlockNode._new()
  209. ._location_(location())
  210. ._source_(text())
  211. ._parameters_(params || [])
  212. ._dagChildren_([sequence._asBlockSequenceNode()]);
  213. },
  214. peg$c103 = function(selector) {
  215. return $globals.SendNode._new()
  216. ._location_(location())
  217. ._source_(text())
  218. ._selector_(selector);
  219. },
  220. peg$c104 = function(receiver, tail) {
  221. return receiver._withTail_(tail);
  222. },
  223. peg$c105 = function(selector, arg) {
  224. return $globals.SendNode._new()
  225. ._location_(location())
  226. ._source_(text())
  227. ._selector_(selector)
  228. ._arguments_([arg]);
  229. },
  230. peg$c106 = function(pairs) {
  231. var selector = '';
  232. var args = [];
  233. for(var i = 0; i < pairs.length; i++) {
  234. selector += pairs[i].key;
  235. args.push(pairs[i].arg);
  236. }
  237. return $globals.SendNode._new()
  238. ._location_(location())
  239. ._source_(text())
  240. ._selector_(selector)
  241. ._arguments_(args);
  242. },
  243. peg$c107 = function(receiver, tail) {
  244. return tail ? receiver._withTail_([tail]) : receiver;
  245. },
  246. peg$c108 = function(send) {return send._isSendNode();},
  247. peg$c109 = ";",
  248. peg$c110 = { type: "literal", value: ";", description: "\";\"" },
  249. peg$c111 = function(send, mess) {return mess;},
  250. peg$c112 = function(send, messages) {
  251. messages.unshift(send);
  252. return $globals.CascadeNode._new()
  253. ._location_(location())
  254. ._source_(text())
  255. ._dagChildren_(messages);
  256. },
  257. peg$c113 = function(operand) {return operand;},
  258. peg$c114 = function(key, value) {
  259. return $globals.SendNode._new()
  260. ._location_(location())
  261. ._source_(text())
  262. ._selector_(key)
  263. ._arguments_([value]);
  264. },
  265. peg$c115 = "<",
  266. peg$c116 = { type: "literal", value: "<", description: "\"<\"" },
  267. peg$c117 = function(tag, messages, operands) {return operands;},
  268. peg$c118 = ">",
  269. peg$c119 = { type: "literal", value: ">", description: "\">\"" },
  270. peg$c120 = function(tag, messages, operands) {
  271. return $globals.StxNode._new()
  272. ._location_(location())
  273. ._source_(text())
  274. ._tag_(tag)
  275. ._attributes_(messages)
  276. ._children_(operands || []);
  277. },
  278. peg$c121 = ">>",
  279. peg$c122 = { type: "literal", value: ">>", description: "\">>\"" },
  280. peg$c123 = function() {return '>';},
  281. peg$c124 = /^[^>]/,
  282. peg$c125 = { type: "class", value: "[^>]", description: "[^>]" },
  283. peg$c126 = function(val) {return !/^\s*inlineJS/.test(val.join(''));},
  284. peg$c127 = function(val) {
  285. console.warn('Use of <...js code...> is deprecated, in:\n' + val.join(''));
  286. return $globals.JSStatementNode._new()
  287. ._location_(location())
  288. ._source_(val.join(''))
  289. },
  290. peg$c128 = "inlineJS:",
  291. peg$c129 = { type: "literal", value: "inlineJS:", description: "\"inlineJS:\"" },
  292. peg$c130 = function(val) {
  293. return $globals.JSStatementNode._new()
  294. ._location_(location())
  295. ._source_(val)
  296. },
  297. peg$c131 = function(pattern, sequence) {
  298. return $globals.MethodNode._new()
  299. ._location_(location())
  300. ._source_(text())
  301. ._selector_(pattern[0])
  302. ._arguments_(pattern[1])
  303. ._dagChildren_([sequence]);
  304. },
  305. peg$c132 = function(send) { return send._isSendNode() && send._selector() === '->' },
  306. peg$c133 = function(send) {
  307. return [send._receiver(), send._arguments()[0]];
  308. },
  309. peg$c134 = function(first, others) {
  310. return first.concat.apply(first, others);
  311. },
  312. peg$currPos = 0,
  313. peg$savedPos = 0,
  314. peg$posDetailsCache = [{ line: 1, column: 1, seenCR: false }],
  315. peg$maxFailPos = 0,
  316. peg$maxFailExpected = [],
  317. peg$silentFails = 0,
  318. peg$resultsCache = {},
  319. peg$result;
  320. if ("startRule" in options) {
  321. if (!(options.startRule in peg$startRuleFunctions)) {
  322. throw new Error("Can't start parsing from rule \"" + options.startRule + "\".");
  323. }
  324. peg$startRuleFunction = peg$startRuleFunctions[options.startRule];
  325. }
  326. function text() {
  327. return input.substring(peg$savedPos, peg$currPos);
  328. }
  329. function location() {
  330. return peg$computeLocation(peg$savedPos, peg$currPos);
  331. }
  332. function expected(description) {
  333. throw peg$buildException(
  334. null,
  335. [{ type: "other", description: description }],
  336. input.substring(peg$savedPos, peg$currPos),
  337. peg$computeLocation(peg$savedPos, peg$currPos)
  338. );
  339. }
  340. function error(message) {
  341. throw peg$buildException(
  342. message,
  343. null,
  344. input.substring(peg$savedPos, peg$currPos),
  345. peg$computeLocation(peg$savedPos, peg$currPos)
  346. );
  347. }
  348. function peg$computePosDetails(pos) {
  349. var details = peg$posDetailsCache[pos],
  350. p, ch;
  351. if (details) {
  352. return details;
  353. } else {
  354. p = pos - 1;
  355. while (!peg$posDetailsCache[p]) {
  356. p--;
  357. }
  358. details = peg$posDetailsCache[p];
  359. details = {
  360. line: details.line,
  361. column: details.column,
  362. seenCR: details.seenCR
  363. };
  364. while (p < pos) {
  365. ch = input.charAt(p);
  366. if (ch === "\n") {
  367. if (!details.seenCR) { details.line++; }
  368. details.column = 1;
  369. details.seenCR = false;
  370. } else if (ch === "\r" || ch === "\u2028" || ch === "\u2029") {
  371. details.line++;
  372. details.column = 1;
  373. details.seenCR = true;
  374. } else {
  375. details.column++;
  376. details.seenCR = false;
  377. }
  378. p++;
  379. }
  380. peg$posDetailsCache[pos] = details;
  381. return details;
  382. }
  383. }
  384. function peg$computeLocation(startPos, endPos) {
  385. var startPosDetails = peg$computePosDetails(startPos),
  386. endPosDetails = peg$computePosDetails(endPos);
  387. return {
  388. start: {
  389. offset: startPos,
  390. line: startPosDetails.line,
  391. column: startPosDetails.column
  392. },
  393. end: {
  394. offset: endPos,
  395. line: endPosDetails.line,
  396. column: endPosDetails.column
  397. }
  398. };
  399. }
  400. function peg$fail(expected) {
  401. if (peg$currPos < peg$maxFailPos) { return; }
  402. if (peg$currPos > peg$maxFailPos) {
  403. peg$maxFailPos = peg$currPos;
  404. peg$maxFailExpected = [];
  405. }
  406. peg$maxFailExpected.push(expected);
  407. }
  408. function peg$buildException(message, expected, found, location) {
  409. function cleanupExpected(expected) {
  410. var i = 1;
  411. expected.sort(function(a, b) {
  412. if (a.description < b.description) {
  413. return -1;
  414. } else if (a.description > b.description) {
  415. return 1;
  416. } else {
  417. return 0;
  418. }
  419. });
  420. while (i < expected.length) {
  421. if (expected[i - 1] === expected[i]) {
  422. expected.splice(i, 1);
  423. } else {
  424. i++;
  425. }
  426. }
  427. }
  428. function buildMessage(expected, found) {
  429. function stringEscape(s) {
  430. function hex(ch) { return ch.charCodeAt(0).toString(16).toUpperCase(); }
  431. return s
  432. .replace(/\\/g, '\\\\')
  433. .replace(/"/g, '\\"')
  434. .replace(/\x08/g, '\\b')
  435. .replace(/\t/g, '\\t')
  436. .replace(/\n/g, '\\n')
  437. .replace(/\f/g, '\\f')
  438. .replace(/\r/g, '\\r')
  439. .replace(/[\x00-\x07\x0B\x0E\x0F]/g, function(ch) { return '\\x0' + hex(ch); })
  440. .replace(/[\x10-\x1F\x80-\xFF]/g, function(ch) { return '\\x' + hex(ch); })
  441. .replace(/[\u0100-\u0FFF]/g, function(ch) { return '\\u0' + hex(ch); })
  442. .replace(/[\u1000-\uFFFF]/g, function(ch) { return '\\u' + hex(ch); });
  443. }
  444. var expectedDescs = new Array(expected.length),
  445. expectedDesc, foundDesc, i;
  446. for (i = 0; i < expected.length; i++) {
  447. expectedDescs[i] = expected[i].description;
  448. }
  449. expectedDesc = expected.length > 1
  450. ? expectedDescs.slice(0, -1).join(", ")
  451. + " or "
  452. + expectedDescs[expected.length - 1]
  453. : expectedDescs[0];
  454. foundDesc = found ? "\"" + stringEscape(found) + "\"" : "end of input";
  455. return "Expected " + expectedDesc + " but " + foundDesc + " found.";
  456. }
  457. if (expected !== null) {
  458. cleanupExpected(expected);
  459. }
  460. return new peg$SyntaxError(
  461. message !== null ? message : buildMessage(expected, found),
  462. expected,
  463. found,
  464. location
  465. );
  466. }
  467. function peg$parsestart() {
  468. var s0;
  469. var key = peg$currPos * 66 + 0,
  470. cached = peg$resultsCache[key];
  471. if (cached) {
  472. peg$currPos = cached.nextPos;
  473. return cached.result;
  474. }
  475. s0 = peg$parsemethod();
  476. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  477. return s0;
  478. }
  479. function peg$parseseparator() {
  480. var s0, s1;
  481. var key = peg$currPos * 66 + 1,
  482. cached = peg$resultsCache[key];
  483. if (cached) {
  484. peg$currPos = cached.nextPos;
  485. return cached.result;
  486. }
  487. s0 = [];
  488. if (peg$c0.test(input.charAt(peg$currPos))) {
  489. s1 = input.charAt(peg$currPos);
  490. peg$currPos++;
  491. } else {
  492. s1 = peg$FAILED;
  493. if (peg$silentFails === 0) { peg$fail(peg$c1); }
  494. }
  495. if (s1 !== peg$FAILED) {
  496. while (s1 !== peg$FAILED) {
  497. s0.push(s1);
  498. if (peg$c0.test(input.charAt(peg$currPos))) {
  499. s1 = input.charAt(peg$currPos);
  500. peg$currPos++;
  501. } else {
  502. s1 = peg$FAILED;
  503. if (peg$silentFails === 0) { peg$fail(peg$c1); }
  504. }
  505. }
  506. } else {
  507. s0 = peg$FAILED;
  508. }
  509. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  510. return s0;
  511. }
  512. function peg$parsecomments() {
  513. var s0, s1, s2, s3, s4;
  514. var key = peg$currPos * 66 + 2,
  515. cached = peg$resultsCache[key];
  516. if (cached) {
  517. peg$currPos = cached.nextPos;
  518. return cached.result;
  519. }
  520. s0 = [];
  521. s1 = peg$currPos;
  522. if (input.charCodeAt(peg$currPos) === 34) {
  523. s2 = peg$c2;
  524. peg$currPos++;
  525. } else {
  526. s2 = peg$FAILED;
  527. if (peg$silentFails === 0) { peg$fail(peg$c3); }
  528. }
  529. if (s2 !== peg$FAILED) {
  530. s3 = [];
  531. if (peg$c4.test(input.charAt(peg$currPos))) {
  532. s4 = input.charAt(peg$currPos);
  533. peg$currPos++;
  534. } else {
  535. s4 = peg$FAILED;
  536. if (peg$silentFails === 0) { peg$fail(peg$c5); }
  537. }
  538. while (s4 !== peg$FAILED) {
  539. s3.push(s4);
  540. if (peg$c4.test(input.charAt(peg$currPos))) {
  541. s4 = input.charAt(peg$currPos);
  542. peg$currPos++;
  543. } else {
  544. s4 = peg$FAILED;
  545. if (peg$silentFails === 0) { peg$fail(peg$c5); }
  546. }
  547. }
  548. if (s3 !== peg$FAILED) {
  549. if (input.charCodeAt(peg$currPos) === 34) {
  550. s4 = peg$c2;
  551. peg$currPos++;
  552. } else {
  553. s4 = peg$FAILED;
  554. if (peg$silentFails === 0) { peg$fail(peg$c3); }
  555. }
  556. if (s4 !== peg$FAILED) {
  557. s2 = [s2, s3, s4];
  558. s1 = s2;
  559. } else {
  560. peg$currPos = s1;
  561. s1 = peg$FAILED;
  562. }
  563. } else {
  564. peg$currPos = s1;
  565. s1 = peg$FAILED;
  566. }
  567. } else {
  568. peg$currPos = s1;
  569. s1 = peg$FAILED;
  570. }
  571. if (s1 !== peg$FAILED) {
  572. while (s1 !== peg$FAILED) {
  573. s0.push(s1);
  574. s1 = peg$currPos;
  575. if (input.charCodeAt(peg$currPos) === 34) {
  576. s2 = peg$c2;
  577. peg$currPos++;
  578. } else {
  579. s2 = peg$FAILED;
  580. if (peg$silentFails === 0) { peg$fail(peg$c3); }
  581. }
  582. if (s2 !== peg$FAILED) {
  583. s3 = [];
  584. if (peg$c4.test(input.charAt(peg$currPos))) {
  585. s4 = input.charAt(peg$currPos);
  586. peg$currPos++;
  587. } else {
  588. s4 = peg$FAILED;
  589. if (peg$silentFails === 0) { peg$fail(peg$c5); }
  590. }
  591. while (s4 !== peg$FAILED) {
  592. s3.push(s4);
  593. if (peg$c4.test(input.charAt(peg$currPos))) {
  594. s4 = input.charAt(peg$currPos);
  595. peg$currPos++;
  596. } else {
  597. s4 = peg$FAILED;
  598. if (peg$silentFails === 0) { peg$fail(peg$c5); }
  599. }
  600. }
  601. if (s3 !== peg$FAILED) {
  602. if (input.charCodeAt(peg$currPos) === 34) {
  603. s4 = peg$c2;
  604. peg$currPos++;
  605. } else {
  606. s4 = peg$FAILED;
  607. if (peg$silentFails === 0) { peg$fail(peg$c3); }
  608. }
  609. if (s4 !== peg$FAILED) {
  610. s2 = [s2, s3, s4];
  611. s1 = s2;
  612. } else {
  613. peg$currPos = s1;
  614. s1 = peg$FAILED;
  615. }
  616. } else {
  617. peg$currPos = s1;
  618. s1 = peg$FAILED;
  619. }
  620. } else {
  621. peg$currPos = s1;
  622. s1 = peg$FAILED;
  623. }
  624. }
  625. } else {
  626. s0 = peg$FAILED;
  627. }
  628. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  629. return s0;
  630. }
  631. function peg$parsews() {
  632. var s0, s1;
  633. var key = peg$currPos * 66 + 3,
  634. cached = peg$resultsCache[key];
  635. if (cached) {
  636. peg$currPos = cached.nextPos;
  637. return cached.result;
  638. }
  639. s0 = [];
  640. s1 = peg$parseseparator();
  641. if (s1 === peg$FAILED) {
  642. s1 = peg$parsecomments();
  643. }
  644. while (s1 !== peg$FAILED) {
  645. s0.push(s1);
  646. s1 = peg$parseseparator();
  647. if (s1 === peg$FAILED) {
  648. s1 = peg$parsecomments();
  649. }
  650. }
  651. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  652. return s0;
  653. }
  654. function peg$parsemaybeDotsWs() {
  655. var s0, s1;
  656. var key = peg$currPos * 66 + 4,
  657. cached = peg$resultsCache[key];
  658. if (cached) {
  659. peg$currPos = cached.nextPos;
  660. return cached.result;
  661. }
  662. s0 = [];
  663. if (input.charCodeAt(peg$currPos) === 46) {
  664. s1 = peg$c6;
  665. peg$currPos++;
  666. } else {
  667. s1 = peg$FAILED;
  668. if (peg$silentFails === 0) { peg$fail(peg$c7); }
  669. }
  670. if (s1 === peg$FAILED) {
  671. s1 = peg$parseseparator();
  672. if (s1 === peg$FAILED) {
  673. s1 = peg$parsecomments();
  674. }
  675. }
  676. while (s1 !== peg$FAILED) {
  677. s0.push(s1);
  678. if (input.charCodeAt(peg$currPos) === 46) {
  679. s1 = peg$c6;
  680. peg$currPos++;
  681. } else {
  682. s1 = peg$FAILED;
  683. if (peg$silentFails === 0) { peg$fail(peg$c7); }
  684. }
  685. if (s1 === peg$FAILED) {
  686. s1 = peg$parseseparator();
  687. if (s1 === peg$FAILED) {
  688. s1 = peg$parsecomments();
  689. }
  690. }
  691. }
  692. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  693. return s0;
  694. }
  695. function peg$parseidentifier() {
  696. var s0, s1, s2, s3, s4;
  697. var key = peg$currPos * 66 + 5,
  698. cached = peg$resultsCache[key];
  699. if (cached) {
  700. peg$currPos = cached.nextPos;
  701. return cached.result;
  702. }
  703. s0 = peg$currPos;
  704. s1 = peg$currPos;
  705. if (peg$c8.test(input.charAt(peg$currPos))) {
  706. s2 = input.charAt(peg$currPos);
  707. peg$currPos++;
  708. } else {
  709. s2 = peg$FAILED;
  710. if (peg$silentFails === 0) { peg$fail(peg$c9); }
  711. }
  712. if (s2 !== peg$FAILED) {
  713. s3 = [];
  714. if (peg$c10.test(input.charAt(peg$currPos))) {
  715. s4 = input.charAt(peg$currPos);
  716. peg$currPos++;
  717. } else {
  718. s4 = peg$FAILED;
  719. if (peg$silentFails === 0) { peg$fail(peg$c11); }
  720. }
  721. while (s4 !== peg$FAILED) {
  722. s3.push(s4);
  723. if (peg$c10.test(input.charAt(peg$currPos))) {
  724. s4 = input.charAt(peg$currPos);
  725. peg$currPos++;
  726. } else {
  727. s4 = peg$FAILED;
  728. if (peg$silentFails === 0) { peg$fail(peg$c11); }
  729. }
  730. }
  731. if (s3 !== peg$FAILED) {
  732. s2 = [s2, s3];
  733. s1 = s2;
  734. } else {
  735. peg$currPos = s1;
  736. s1 = peg$FAILED;
  737. }
  738. } else {
  739. peg$currPos = s1;
  740. s1 = peg$FAILED;
  741. }
  742. if (s1 !== peg$FAILED) {
  743. s0 = input.substring(s0, peg$currPos);
  744. } else {
  745. s0 = s1;
  746. }
  747. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  748. return s0;
  749. }
  750. function peg$parsekeyword() {
  751. var s0, s1, s2, s3;
  752. var key = peg$currPos * 66 + 6,
  753. cached = peg$resultsCache[key];
  754. if (cached) {
  755. peg$currPos = cached.nextPos;
  756. return cached.result;
  757. }
  758. s0 = peg$currPos;
  759. s1 = peg$currPos;
  760. s2 = peg$parseidentifier();
  761. if (s2 !== peg$FAILED) {
  762. if (input.charCodeAt(peg$currPos) === 58) {
  763. s3 = peg$c12;
  764. peg$currPos++;
  765. } else {
  766. s3 = peg$FAILED;
  767. if (peg$silentFails === 0) { peg$fail(peg$c13); }
  768. }
  769. if (s3 !== peg$FAILED) {
  770. s2 = [s2, s3];
  771. s1 = s2;
  772. } else {
  773. peg$currPos = s1;
  774. s1 = peg$FAILED;
  775. }
  776. } else {
  777. peg$currPos = s1;
  778. s1 = peg$FAILED;
  779. }
  780. if (s1 !== peg$FAILED) {
  781. s0 = input.substring(s0, peg$currPos);
  782. } else {
  783. s0 = s1;
  784. }
  785. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  786. return s0;
  787. }
  788. function peg$parseclassName() {
  789. var s0, s1, s2, s3, s4;
  790. var key = peg$currPos * 66 + 7,
  791. cached = peg$resultsCache[key];
  792. if (cached) {
  793. peg$currPos = cached.nextPos;
  794. return cached.result;
  795. }
  796. s0 = peg$currPos;
  797. s1 = peg$currPos;
  798. if (peg$c14.test(input.charAt(peg$currPos))) {
  799. s2 = input.charAt(peg$currPos);
  800. peg$currPos++;
  801. } else {
  802. s2 = peg$FAILED;
  803. if (peg$silentFails === 0) { peg$fail(peg$c15); }
  804. }
  805. if (s2 !== peg$FAILED) {
  806. s3 = [];
  807. if (peg$c10.test(input.charAt(peg$currPos))) {
  808. s4 = input.charAt(peg$currPos);
  809. peg$currPos++;
  810. } else {
  811. s4 = peg$FAILED;
  812. if (peg$silentFails === 0) { peg$fail(peg$c11); }
  813. }
  814. while (s4 !== peg$FAILED) {
  815. s3.push(s4);
  816. if (peg$c10.test(input.charAt(peg$currPos))) {
  817. s4 = input.charAt(peg$currPos);
  818. peg$currPos++;
  819. } else {
  820. s4 = peg$FAILED;
  821. if (peg$silentFails === 0) { peg$fail(peg$c11); }
  822. }
  823. }
  824. if (s3 !== peg$FAILED) {
  825. s2 = [s2, s3];
  826. s1 = s2;
  827. } else {
  828. peg$currPos = s1;
  829. s1 = peg$FAILED;
  830. }
  831. } else {
  832. peg$currPos = s1;
  833. s1 = peg$FAILED;
  834. }
  835. if (s1 !== peg$FAILED) {
  836. s0 = input.substring(s0, peg$currPos);
  837. } else {
  838. s0 = s1;
  839. }
  840. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  841. return s0;
  842. }
  843. function peg$parsestring() {
  844. var s0, s1;
  845. var key = peg$currPos * 66 + 8,
  846. cached = peg$resultsCache[key];
  847. if (cached) {
  848. peg$currPos = cached.nextPos;
  849. return cached.result;
  850. }
  851. s0 = peg$currPos;
  852. s1 = peg$parserawString();
  853. if (s1 !== peg$FAILED) {
  854. peg$savedPos = s0;
  855. s1 = peg$c16(s1);
  856. }
  857. s0 = s1;
  858. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  859. return s0;
  860. }
  861. function peg$parserawString() {
  862. var s0, s1, s2, s3, s4;
  863. var key = peg$currPos * 66 + 9,
  864. cached = peg$resultsCache[key];
  865. if (cached) {
  866. peg$currPos = cached.nextPos;
  867. return cached.result;
  868. }
  869. s0 = peg$currPos;
  870. if (input.charCodeAt(peg$currPos) === 39) {
  871. s1 = peg$c17;
  872. peg$currPos++;
  873. } else {
  874. s1 = peg$FAILED;
  875. if (peg$silentFails === 0) { peg$fail(peg$c18); }
  876. }
  877. if (s1 !== peg$FAILED) {
  878. s2 = [];
  879. s3 = peg$currPos;
  880. if (input.substr(peg$currPos, 2) === peg$c19) {
  881. s4 = peg$c19;
  882. peg$currPos += 2;
  883. } else {
  884. s4 = peg$FAILED;
  885. if (peg$silentFails === 0) { peg$fail(peg$c20); }
  886. }
  887. if (s4 !== peg$FAILED) {
  888. peg$savedPos = s3;
  889. s4 = peg$c21();
  890. }
  891. s3 = s4;
  892. if (s3 === peg$FAILED) {
  893. if (peg$c22.test(input.charAt(peg$currPos))) {
  894. s3 = input.charAt(peg$currPos);
  895. peg$currPos++;
  896. } else {
  897. s3 = peg$FAILED;
  898. if (peg$silentFails === 0) { peg$fail(peg$c23); }
  899. }
  900. }
  901. while (s3 !== peg$FAILED) {
  902. s2.push(s3);
  903. s3 = peg$currPos;
  904. if (input.substr(peg$currPos, 2) === peg$c19) {
  905. s4 = peg$c19;
  906. peg$currPos += 2;
  907. } else {
  908. s4 = peg$FAILED;
  909. if (peg$silentFails === 0) { peg$fail(peg$c20); }
  910. }
  911. if (s4 !== peg$FAILED) {
  912. peg$savedPos = s3;
  913. s4 = peg$c21();
  914. }
  915. s3 = s4;
  916. if (s3 === peg$FAILED) {
  917. if (peg$c22.test(input.charAt(peg$currPos))) {
  918. s3 = input.charAt(peg$currPos);
  919. peg$currPos++;
  920. } else {
  921. s3 = peg$FAILED;
  922. if (peg$silentFails === 0) { peg$fail(peg$c23); }
  923. }
  924. }
  925. }
  926. if (s2 !== peg$FAILED) {
  927. if (input.charCodeAt(peg$currPos) === 39) {
  928. s3 = peg$c17;
  929. peg$currPos++;
  930. } else {
  931. s3 = peg$FAILED;
  932. if (peg$silentFails === 0) { peg$fail(peg$c18); }
  933. }
  934. if (s3 !== peg$FAILED) {
  935. peg$savedPos = s0;
  936. s1 = peg$c24(s2);
  937. s0 = s1;
  938. } else {
  939. peg$currPos = s0;
  940. s0 = peg$FAILED;
  941. }
  942. } else {
  943. peg$currPos = s0;
  944. s0 = peg$FAILED;
  945. }
  946. } else {
  947. peg$currPos = s0;
  948. s0 = peg$FAILED;
  949. }
  950. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  951. return s0;
  952. }
  953. function peg$parsecharacter() {
  954. var s0, s1, s2;
  955. var key = peg$currPos * 66 + 10,
  956. cached = peg$resultsCache[key];
  957. if (cached) {
  958. peg$currPos = cached.nextPos;
  959. return cached.result;
  960. }
  961. s0 = peg$currPos;
  962. if (input.charCodeAt(peg$currPos) === 36) {
  963. s1 = peg$c25;
  964. peg$currPos++;
  965. } else {
  966. s1 = peg$FAILED;
  967. if (peg$silentFails === 0) { peg$fail(peg$c26); }
  968. }
  969. if (s1 !== peg$FAILED) {
  970. if (input.length > peg$currPos) {
  971. s2 = input.charAt(peg$currPos);
  972. peg$currPos++;
  973. } else {
  974. s2 = peg$FAILED;
  975. if (peg$silentFails === 0) { peg$fail(peg$c27); }
  976. }
  977. if (s2 !== peg$FAILED) {
  978. peg$savedPos = s0;
  979. s1 = peg$c28(s2);
  980. s0 = s1;
  981. } else {
  982. peg$currPos = s0;
  983. s0 = peg$FAILED;
  984. }
  985. } else {
  986. peg$currPos = s0;
  987. s0 = peg$FAILED;
  988. }
  989. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  990. return s0;
  991. }
  992. function peg$parsesymbol() {
  993. var s0, s1, s2;
  994. var key = peg$currPos * 66 + 11,
  995. cached = peg$resultsCache[key];
  996. if (cached) {
  997. peg$currPos = cached.nextPos;
  998. return cached.result;
  999. }
  1000. s0 = peg$currPos;
  1001. if (input.charCodeAt(peg$currPos) === 35) {
  1002. s1 = peg$c29;
  1003. peg$currPos++;
  1004. } else {
  1005. s1 = peg$FAILED;
  1006. if (peg$silentFails === 0) { peg$fail(peg$c30); }
  1007. }
  1008. if (s1 !== peg$FAILED) {
  1009. s2 = peg$parsebareSymbol();
  1010. if (s2 !== peg$FAILED) {
  1011. peg$savedPos = s0;
  1012. s1 = peg$c31(s2);
  1013. s0 = s1;
  1014. } else {
  1015. peg$currPos = s0;
  1016. s0 = peg$FAILED;
  1017. }
  1018. } else {
  1019. peg$currPos = s0;
  1020. s0 = peg$FAILED;
  1021. }
  1022. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1023. return s0;
  1024. }
  1025. function peg$parsebareSymbol() {
  1026. var s0, s1, s2, s3;
  1027. var key = peg$currPos * 66 + 12,
  1028. cached = peg$resultsCache[key];
  1029. if (cached) {
  1030. peg$currPos = cached.nextPos;
  1031. return cached.result;
  1032. }
  1033. s0 = peg$currPos;
  1034. s1 = peg$currPos;
  1035. s2 = [];
  1036. s3 = peg$parsekeyword();
  1037. if (s3 !== peg$FAILED) {
  1038. while (s3 !== peg$FAILED) {
  1039. s2.push(s3);
  1040. s3 = peg$parsekeyword();
  1041. }
  1042. } else {
  1043. s2 = peg$FAILED;
  1044. }
  1045. if (s2 !== peg$FAILED) {
  1046. s1 = input.substring(s1, peg$currPos);
  1047. } else {
  1048. s1 = s2;
  1049. }
  1050. if (s1 === peg$FAILED) {
  1051. s1 = peg$parsebinarySelector();
  1052. if (s1 === peg$FAILED) {
  1053. s1 = peg$parseidentifier();
  1054. if (s1 === peg$FAILED) {
  1055. s1 = peg$parserawString();
  1056. }
  1057. }
  1058. }
  1059. if (s1 !== peg$FAILED) {
  1060. peg$savedPos = s0;
  1061. s1 = peg$c16(s1);
  1062. }
  1063. s0 = s1;
  1064. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1065. return s0;
  1066. }
  1067. function peg$parsenumber() {
  1068. var s0, s1;
  1069. var key = peg$currPos * 66 + 13,
  1070. cached = peg$resultsCache[key];
  1071. if (cached) {
  1072. peg$currPos = cached.nextPos;
  1073. return cached.result;
  1074. }
  1075. s0 = peg$currPos;
  1076. s1 = peg$parserawNumber();
  1077. if (s1 !== peg$FAILED) {
  1078. peg$savedPos = s0;
  1079. s1 = peg$c16(s1);
  1080. }
  1081. s0 = s1;
  1082. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1083. return s0;
  1084. }
  1085. function peg$parserawNumber() {
  1086. var s0;
  1087. var key = peg$currPos * 66 + 14,
  1088. cached = peg$resultsCache[key];
  1089. if (cached) {
  1090. peg$currPos = cached.nextPos;
  1091. return cached.result;
  1092. }
  1093. s0 = peg$parsenumberExp();
  1094. if (s0 === peg$FAILED) {
  1095. s0 = peg$parsehex();
  1096. if (s0 === peg$FAILED) {
  1097. s0 = peg$parsefloat();
  1098. if (s0 === peg$FAILED) {
  1099. s0 = peg$parseinteger();
  1100. }
  1101. }
  1102. }
  1103. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1104. return s0;
  1105. }
  1106. function peg$parsenumberExp() {
  1107. var s0, s1, s2, s3, s4, s5;
  1108. var key = peg$currPos * 66 + 15,
  1109. cached = peg$resultsCache[key];
  1110. if (cached) {
  1111. peg$currPos = cached.nextPos;
  1112. return cached.result;
  1113. }
  1114. s0 = peg$currPos;
  1115. s1 = peg$currPos;
  1116. s2 = peg$currPos;
  1117. s3 = peg$parsefloat();
  1118. if (s3 === peg$FAILED) {
  1119. s3 = peg$parseinteger();
  1120. }
  1121. if (s3 !== peg$FAILED) {
  1122. if (input.charCodeAt(peg$currPos) === 101) {
  1123. s4 = peg$c32;
  1124. peg$currPos++;
  1125. } else {
  1126. s4 = peg$FAILED;
  1127. if (peg$silentFails === 0) { peg$fail(peg$c33); }
  1128. }
  1129. if (s4 !== peg$FAILED) {
  1130. s5 = peg$parseinteger();
  1131. if (s5 !== peg$FAILED) {
  1132. s3 = [s3, s4, s5];
  1133. s2 = s3;
  1134. } else {
  1135. peg$currPos = s2;
  1136. s2 = peg$FAILED;
  1137. }
  1138. } else {
  1139. peg$currPos = s2;
  1140. s2 = peg$FAILED;
  1141. }
  1142. } else {
  1143. peg$currPos = s2;
  1144. s2 = peg$FAILED;
  1145. }
  1146. if (s2 !== peg$FAILED) {
  1147. s1 = input.substring(s1, peg$currPos);
  1148. } else {
  1149. s1 = s2;
  1150. }
  1151. if (s1 !== peg$FAILED) {
  1152. peg$savedPos = s0;
  1153. s1 = peg$c34(s1);
  1154. }
  1155. s0 = s1;
  1156. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1157. return s0;
  1158. }
  1159. function peg$parsehex() {
  1160. var s0, s1, s2, s3, s4, s5;
  1161. var key = peg$currPos * 66 + 16,
  1162. cached = peg$resultsCache[key];
  1163. if (cached) {
  1164. peg$currPos = cached.nextPos;
  1165. return cached.result;
  1166. }
  1167. s0 = peg$currPos;
  1168. if (input.charCodeAt(peg$currPos) === 45) {
  1169. s1 = peg$c35;
  1170. peg$currPos++;
  1171. } else {
  1172. s1 = peg$FAILED;
  1173. if (peg$silentFails === 0) { peg$fail(peg$c36); }
  1174. }
  1175. if (s1 === peg$FAILED) {
  1176. s1 = null;
  1177. }
  1178. if (s1 !== peg$FAILED) {
  1179. if (input.substr(peg$currPos, 3) === peg$c37) {
  1180. s2 = peg$c37;
  1181. peg$currPos += 3;
  1182. } else {
  1183. s2 = peg$FAILED;
  1184. if (peg$silentFails === 0) { peg$fail(peg$c38); }
  1185. }
  1186. if (s2 !== peg$FAILED) {
  1187. s3 = peg$currPos;
  1188. s4 = [];
  1189. if (peg$c39.test(input.charAt(peg$currPos))) {
  1190. s5 = input.charAt(peg$currPos);
  1191. peg$currPos++;
  1192. } else {
  1193. s5 = peg$FAILED;
  1194. if (peg$silentFails === 0) { peg$fail(peg$c40); }
  1195. }
  1196. if (s5 !== peg$FAILED) {
  1197. while (s5 !== peg$FAILED) {
  1198. s4.push(s5);
  1199. if (peg$c39.test(input.charAt(peg$currPos))) {
  1200. s5 = input.charAt(peg$currPos);
  1201. peg$currPos++;
  1202. } else {
  1203. s5 = peg$FAILED;
  1204. if (peg$silentFails === 0) { peg$fail(peg$c40); }
  1205. }
  1206. }
  1207. } else {
  1208. s4 = peg$FAILED;
  1209. }
  1210. if (s4 !== peg$FAILED) {
  1211. s3 = input.substring(s3, peg$currPos);
  1212. } else {
  1213. s3 = s4;
  1214. }
  1215. if (s3 !== peg$FAILED) {
  1216. peg$savedPos = s0;
  1217. s1 = peg$c41(s1, s3);
  1218. s0 = s1;
  1219. } else {
  1220. peg$currPos = s0;
  1221. s0 = peg$FAILED;
  1222. }
  1223. } else {
  1224. peg$currPos = s0;
  1225. s0 = peg$FAILED;
  1226. }
  1227. } else {
  1228. peg$currPos = s0;
  1229. s0 = peg$FAILED;
  1230. }
  1231. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1232. return s0;
  1233. }
  1234. function peg$parsefloat() {
  1235. var s0, s1, s2, s3, s4, s5, s6, s7;
  1236. var key = peg$currPos * 66 + 17,
  1237. cached = peg$resultsCache[key];
  1238. if (cached) {
  1239. peg$currPos = cached.nextPos;
  1240. return cached.result;
  1241. }
  1242. s0 = peg$currPos;
  1243. s1 = peg$currPos;
  1244. s2 = peg$currPos;
  1245. if (input.charCodeAt(peg$currPos) === 45) {
  1246. s3 = peg$c35;
  1247. peg$currPos++;
  1248. } else {
  1249. s3 = peg$FAILED;
  1250. if (peg$silentFails === 0) { peg$fail(peg$c36); }
  1251. }
  1252. if (s3 === peg$FAILED) {
  1253. s3 = null;
  1254. }
  1255. if (s3 !== peg$FAILED) {
  1256. s4 = [];
  1257. if (peg$c42.test(input.charAt(peg$currPos))) {
  1258. s5 = input.charAt(peg$currPos);
  1259. peg$currPos++;
  1260. } else {
  1261. s5 = peg$FAILED;
  1262. if (peg$silentFails === 0) { peg$fail(peg$c43); }
  1263. }
  1264. if (s5 !== peg$FAILED) {
  1265. while (s5 !== peg$FAILED) {
  1266. s4.push(s5);
  1267. if (peg$c42.test(input.charAt(peg$currPos))) {
  1268. s5 = input.charAt(peg$currPos);
  1269. peg$currPos++;
  1270. } else {
  1271. s5 = peg$FAILED;
  1272. if (peg$silentFails === 0) { peg$fail(peg$c43); }
  1273. }
  1274. }
  1275. } else {
  1276. s4 = peg$FAILED;
  1277. }
  1278. if (s4 !== peg$FAILED) {
  1279. if (input.charCodeAt(peg$currPos) === 46) {
  1280. s5 = peg$c6;
  1281. peg$currPos++;
  1282. } else {
  1283. s5 = peg$FAILED;
  1284. if (peg$silentFails === 0) { peg$fail(peg$c7); }
  1285. }
  1286. if (s5 !== peg$FAILED) {
  1287. s6 = [];
  1288. if (peg$c42.test(input.charAt(peg$currPos))) {
  1289. s7 = input.charAt(peg$currPos);
  1290. peg$currPos++;
  1291. } else {
  1292. s7 = peg$FAILED;
  1293. if (peg$silentFails === 0) { peg$fail(peg$c43); }
  1294. }
  1295. if (s7 !== peg$FAILED) {
  1296. while (s7 !== peg$FAILED) {
  1297. s6.push(s7);
  1298. if (peg$c42.test(input.charAt(peg$currPos))) {
  1299. s7 = input.charAt(peg$currPos);
  1300. peg$currPos++;
  1301. } else {
  1302. s7 = peg$FAILED;
  1303. if (peg$silentFails === 0) { peg$fail(peg$c43); }
  1304. }
  1305. }
  1306. } else {
  1307. s6 = peg$FAILED;
  1308. }
  1309. if (s6 !== peg$FAILED) {
  1310. s3 = [s3, s4, s5, s6];
  1311. s2 = s3;
  1312. } else {
  1313. peg$currPos = s2;
  1314. s2 = peg$FAILED;
  1315. }
  1316. } else {
  1317. peg$currPos = s2;
  1318. s2 = peg$FAILED;
  1319. }
  1320. } else {
  1321. peg$currPos = s2;
  1322. s2 = peg$FAILED;
  1323. }
  1324. } else {
  1325. peg$currPos = s2;
  1326. s2 = peg$FAILED;
  1327. }
  1328. if (s2 !== peg$FAILED) {
  1329. s1 = input.substring(s1, peg$currPos);
  1330. } else {
  1331. s1 = s2;
  1332. }
  1333. if (s1 !== peg$FAILED) {
  1334. peg$savedPos = s0;
  1335. s1 = peg$c44(s1);
  1336. }
  1337. s0 = s1;
  1338. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1339. return s0;
  1340. }
  1341. function peg$parseinteger() {
  1342. var s0, s1, s2, s3, s4, s5;
  1343. var key = peg$currPos * 66 + 18,
  1344. cached = peg$resultsCache[key];
  1345. if (cached) {
  1346. peg$currPos = cached.nextPos;
  1347. return cached.result;
  1348. }
  1349. s0 = peg$currPos;
  1350. s1 = peg$currPos;
  1351. s2 = peg$currPos;
  1352. if (input.charCodeAt(peg$currPos) === 45) {
  1353. s3 = peg$c35;
  1354. peg$currPos++;
  1355. } else {
  1356. s3 = peg$FAILED;
  1357. if (peg$silentFails === 0) { peg$fail(peg$c36); }
  1358. }
  1359. if (s3 === peg$FAILED) {
  1360. s3 = null;
  1361. }
  1362. if (s3 !== peg$FAILED) {
  1363. s4 = [];
  1364. if (peg$c42.test(input.charAt(peg$currPos))) {
  1365. s5 = input.charAt(peg$currPos);
  1366. peg$currPos++;
  1367. } else {
  1368. s5 = peg$FAILED;
  1369. if (peg$silentFails === 0) { peg$fail(peg$c43); }
  1370. }
  1371. if (s5 !== peg$FAILED) {
  1372. while (s5 !== peg$FAILED) {
  1373. s4.push(s5);
  1374. if (peg$c42.test(input.charAt(peg$currPos))) {
  1375. s5 = input.charAt(peg$currPos);
  1376. peg$currPos++;
  1377. } else {
  1378. s5 = peg$FAILED;
  1379. if (peg$silentFails === 0) { peg$fail(peg$c43); }
  1380. }
  1381. }
  1382. } else {
  1383. s4 = peg$FAILED;
  1384. }
  1385. if (s4 !== peg$FAILED) {
  1386. s3 = [s3, s4];
  1387. s2 = s3;
  1388. } else {
  1389. peg$currPos = s2;
  1390. s2 = peg$FAILED;
  1391. }
  1392. } else {
  1393. peg$currPos = s2;
  1394. s2 = peg$FAILED;
  1395. }
  1396. if (s2 !== peg$FAILED) {
  1397. s1 = input.substring(s1, peg$currPos);
  1398. } else {
  1399. s1 = s2;
  1400. }
  1401. if (s1 !== peg$FAILED) {
  1402. peg$savedPos = s0;
  1403. s1 = peg$c45(s1);
  1404. }
  1405. s0 = s1;
  1406. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1407. return s0;
  1408. }
  1409. function peg$parseliteralArray() {
  1410. var s0, s1, s2, s3, s4;
  1411. var key = peg$currPos * 66 + 19,
  1412. cached = peg$resultsCache[key];
  1413. if (cached) {
  1414. peg$currPos = cached.nextPos;
  1415. return cached.result;
  1416. }
  1417. s0 = peg$currPos;
  1418. if (input.substr(peg$currPos, 2) === peg$c46) {
  1419. s1 = peg$c46;
  1420. peg$currPos += 2;
  1421. } else {
  1422. s1 = peg$FAILED;
  1423. if (peg$silentFails === 0) { peg$fail(peg$c47); }
  1424. }
  1425. if (s1 !== peg$FAILED) {
  1426. s2 = peg$parsewsLiteralArrayContents();
  1427. if (s2 !== peg$FAILED) {
  1428. s3 = peg$parsews();
  1429. if (s3 !== peg$FAILED) {
  1430. if (input.charCodeAt(peg$currPos) === 41) {
  1431. s4 = peg$c48;
  1432. peg$currPos++;
  1433. } else {
  1434. s4 = peg$FAILED;
  1435. if (peg$silentFails === 0) { peg$fail(peg$c49); }
  1436. }
  1437. if (s4 !== peg$FAILED) {
  1438. peg$savedPos = s0;
  1439. s1 = peg$c50(s2);
  1440. s0 = s1;
  1441. } else {
  1442. peg$currPos = s0;
  1443. s0 = peg$FAILED;
  1444. }
  1445. } else {
  1446. peg$currPos = s0;
  1447. s0 = peg$FAILED;
  1448. }
  1449. } else {
  1450. peg$currPos = s0;
  1451. s0 = peg$FAILED;
  1452. }
  1453. } else {
  1454. peg$currPos = s0;
  1455. s0 = peg$FAILED;
  1456. }
  1457. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1458. return s0;
  1459. }
  1460. function peg$parsebareLiteralArray() {
  1461. var s0, s1, s2, s3, s4;
  1462. var key = peg$currPos * 66 + 20,
  1463. cached = peg$resultsCache[key];
  1464. if (cached) {
  1465. peg$currPos = cached.nextPos;
  1466. return cached.result;
  1467. }
  1468. s0 = peg$currPos;
  1469. if (input.charCodeAt(peg$currPos) === 40) {
  1470. s1 = peg$c51;
  1471. peg$currPos++;
  1472. } else {
  1473. s1 = peg$FAILED;
  1474. if (peg$silentFails === 0) { peg$fail(peg$c52); }
  1475. }
  1476. if (s1 !== peg$FAILED) {
  1477. s2 = peg$parsewsLiteralArrayContents();
  1478. if (s2 !== peg$FAILED) {
  1479. s3 = peg$parsews();
  1480. if (s3 !== peg$FAILED) {
  1481. if (input.charCodeAt(peg$currPos) === 41) {
  1482. s4 = peg$c48;
  1483. peg$currPos++;
  1484. } else {
  1485. s4 = peg$FAILED;
  1486. if (peg$silentFails === 0) { peg$fail(peg$c49); }
  1487. }
  1488. if (s4 !== peg$FAILED) {
  1489. peg$savedPos = s0;
  1490. s1 = peg$c50(s2);
  1491. s0 = s1;
  1492. } else {
  1493. peg$currPos = s0;
  1494. s0 = peg$FAILED;
  1495. }
  1496. } else {
  1497. peg$currPos = s0;
  1498. s0 = peg$FAILED;
  1499. }
  1500. } else {
  1501. peg$currPos = s0;
  1502. s0 = peg$FAILED;
  1503. }
  1504. } else {
  1505. peg$currPos = s0;
  1506. s0 = peg$FAILED;
  1507. }
  1508. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1509. return s0;
  1510. }
  1511. function peg$parseliteralArrayElement() {
  1512. var s0;
  1513. var key = peg$currPos * 66 + 21,
  1514. cached = peg$resultsCache[key];
  1515. if (cached) {
  1516. peg$currPos = cached.nextPos;
  1517. return cached.result;
  1518. }
  1519. s0 = peg$parseparseTimeLiteral();
  1520. if (s0 === peg$FAILED) {
  1521. s0 = peg$parsebareLiteralArray();
  1522. if (s0 === peg$FAILED) {
  1523. s0 = peg$parsebareSymbol();
  1524. }
  1525. }
  1526. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1527. return s0;
  1528. }
  1529. function peg$parsewsLiteralArrayContents() {
  1530. var s0, s1, s2, s3, s4;
  1531. var key = peg$currPos * 66 + 22,
  1532. cached = peg$resultsCache[key];
  1533. if (cached) {
  1534. peg$currPos = cached.nextPos;
  1535. return cached.result;
  1536. }
  1537. s0 = peg$currPos;
  1538. s1 = [];
  1539. s2 = peg$currPos;
  1540. s3 = peg$parsews();
  1541. if (s3 !== peg$FAILED) {
  1542. s4 = peg$parseliteralArrayElement();
  1543. if (s4 !== peg$FAILED) {
  1544. peg$savedPos = s2;
  1545. s3 = peg$c53(s4);
  1546. s2 = s3;
  1547. } else {
  1548. peg$currPos = s2;
  1549. s2 = peg$FAILED;
  1550. }
  1551. } else {
  1552. peg$currPos = s2;
  1553. s2 = peg$FAILED;
  1554. }
  1555. while (s2 !== peg$FAILED) {
  1556. s1.push(s2);
  1557. s2 = peg$currPos;
  1558. s3 = peg$parsews();
  1559. if (s3 !== peg$FAILED) {
  1560. s4 = peg$parseliteralArrayElement();
  1561. if (s4 !== peg$FAILED) {
  1562. peg$savedPos = s2;
  1563. s3 = peg$c53(s4);
  1564. s2 = s3;
  1565. } else {
  1566. peg$currPos = s2;
  1567. s2 = peg$FAILED;
  1568. }
  1569. } else {
  1570. peg$currPos = s2;
  1571. s2 = peg$FAILED;
  1572. }
  1573. }
  1574. if (s1 !== peg$FAILED) {
  1575. peg$savedPos = s0;
  1576. s1 = peg$c54(s1);
  1577. }
  1578. s0 = s1;
  1579. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1580. return s0;
  1581. }
  1582. function peg$parsedynamicArray() {
  1583. var s0, s1, s2, s3, s4;
  1584. var key = peg$currPos * 66 + 23,
  1585. cached = peg$resultsCache[key];
  1586. if (cached) {
  1587. peg$currPos = cached.nextPos;
  1588. return cached.result;
  1589. }
  1590. s0 = peg$currPos;
  1591. if (input.charCodeAt(peg$currPos) === 123) {
  1592. s1 = peg$c55;
  1593. peg$currPos++;
  1594. } else {
  1595. s1 = peg$FAILED;
  1596. if (peg$silentFails === 0) { peg$fail(peg$c56); }
  1597. }
  1598. if (s1 !== peg$FAILED) {
  1599. s2 = peg$parsewsExpressions();
  1600. if (s2 === peg$FAILED) {
  1601. s2 = null;
  1602. }
  1603. if (s2 !== peg$FAILED) {
  1604. s3 = peg$parsemaybeDotsWs();
  1605. if (s3 !== peg$FAILED) {
  1606. if (input.charCodeAt(peg$currPos) === 125) {
  1607. s4 = peg$c57;
  1608. peg$currPos++;
  1609. } else {
  1610. s4 = peg$FAILED;
  1611. if (peg$silentFails === 0) { peg$fail(peg$c58); }
  1612. }
  1613. if (s4 !== peg$FAILED) {
  1614. peg$savedPos = s0;
  1615. s1 = peg$c59(s2);
  1616. s0 = s1;
  1617. } else {
  1618. peg$currPos = s0;
  1619. s0 = peg$FAILED;
  1620. }
  1621. } else {
  1622. peg$currPos = s0;
  1623. s0 = peg$FAILED;
  1624. }
  1625. } else {
  1626. peg$currPos = s0;
  1627. s0 = peg$FAILED;
  1628. }
  1629. } else {
  1630. peg$currPos = s0;
  1631. s0 = peg$FAILED;
  1632. }
  1633. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1634. return s0;
  1635. }
  1636. function peg$parsedynamicDictionary() {
  1637. var s0, s1, s2, s3, s4;
  1638. var key = peg$currPos * 66 + 24,
  1639. cached = peg$resultsCache[key];
  1640. if (cached) {
  1641. peg$currPos = cached.nextPos;
  1642. return cached.result;
  1643. }
  1644. s0 = peg$currPos;
  1645. if (input.substr(peg$currPos, 2) === peg$c60) {
  1646. s1 = peg$c60;
  1647. peg$currPos += 2;
  1648. } else {
  1649. s1 = peg$FAILED;
  1650. if (peg$silentFails === 0) { peg$fail(peg$c61); }
  1651. }
  1652. if (s1 !== peg$FAILED) {
  1653. s2 = peg$parsewsAssociations();
  1654. if (s2 === peg$FAILED) {
  1655. s2 = null;
  1656. }
  1657. if (s2 !== peg$FAILED) {
  1658. s3 = peg$parsemaybeDotsWs();
  1659. if (s3 !== peg$FAILED) {
  1660. if (input.charCodeAt(peg$currPos) === 125) {
  1661. s4 = peg$c57;
  1662. peg$currPos++;
  1663. } else {
  1664. s4 = peg$FAILED;
  1665. if (peg$silentFails === 0) { peg$fail(peg$c58); }
  1666. }
  1667. if (s4 !== peg$FAILED) {
  1668. peg$savedPos = s0;
  1669. s1 = peg$c62(s2);
  1670. s0 = s1;
  1671. } else {
  1672. peg$currPos = s0;
  1673. s0 = peg$FAILED;
  1674. }
  1675. } else {
  1676. peg$currPos = s0;
  1677. s0 = peg$FAILED;
  1678. }
  1679. } else {
  1680. peg$currPos = s0;
  1681. s0 = peg$FAILED;
  1682. }
  1683. } else {
  1684. peg$currPos = s0;
  1685. s0 = peg$FAILED;
  1686. }
  1687. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1688. return s0;
  1689. }
  1690. function peg$parsepseudoVariable() {
  1691. var s0, s1, s2;
  1692. var key = peg$currPos * 66 + 25,
  1693. cached = peg$resultsCache[key];
  1694. if (cached) {
  1695. peg$currPos = cached.nextPos;
  1696. return cached.result;
  1697. }
  1698. s0 = peg$currPos;
  1699. s1 = peg$currPos;
  1700. if (input.substr(peg$currPos, 4) === peg$c63) {
  1701. s2 = peg$c63;
  1702. peg$currPos += 4;
  1703. } else {
  1704. s2 = peg$FAILED;
  1705. if (peg$silentFails === 0) { peg$fail(peg$c64); }
  1706. }
  1707. if (s2 !== peg$FAILED) {
  1708. peg$savedPos = s1;
  1709. s2 = peg$c65();
  1710. }
  1711. s1 = s2;
  1712. if (s1 === peg$FAILED) {
  1713. s1 = peg$currPos;
  1714. if (input.substr(peg$currPos, 5) === peg$c66) {
  1715. s2 = peg$c66;
  1716. peg$currPos += 5;
  1717. } else {
  1718. s2 = peg$FAILED;
  1719. if (peg$silentFails === 0) { peg$fail(peg$c67); }
  1720. }
  1721. if (s2 !== peg$FAILED) {
  1722. peg$savedPos = s1;
  1723. s2 = peg$c68();
  1724. }
  1725. s1 = s2;
  1726. if (s1 === peg$FAILED) {
  1727. s1 = peg$currPos;
  1728. if (input.substr(peg$currPos, 3) === peg$c69) {
  1729. s2 = peg$c69;
  1730. peg$currPos += 3;
  1731. } else {
  1732. s2 = peg$FAILED;
  1733. if (peg$silentFails === 0) { peg$fail(peg$c70); }
  1734. }
  1735. if (s2 !== peg$FAILED) {
  1736. peg$savedPos = s1;
  1737. s2 = peg$c71();
  1738. }
  1739. s1 = s2;
  1740. }
  1741. }
  1742. if (s1 !== peg$FAILED) {
  1743. peg$savedPos = s0;
  1744. s1 = peg$c16(s1);
  1745. }
  1746. s0 = s1;
  1747. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1748. return s0;
  1749. }
  1750. function peg$parseparseTimeLiteral() {
  1751. var s0;
  1752. var key = peg$currPos * 66 + 26,
  1753. cached = peg$resultsCache[key];
  1754. if (cached) {
  1755. peg$currPos = cached.nextPos;
  1756. return cached.result;
  1757. }
  1758. s0 = peg$parsepseudoVariable();
  1759. if (s0 === peg$FAILED) {
  1760. s0 = peg$parsenumber();
  1761. if (s0 === peg$FAILED) {
  1762. s0 = peg$parseliteralArray();
  1763. if (s0 === peg$FAILED) {
  1764. s0 = peg$parsestring();
  1765. if (s0 === peg$FAILED) {
  1766. s0 = peg$parsesymbol();
  1767. if (s0 === peg$FAILED) {
  1768. s0 = peg$parsecharacter();
  1769. }
  1770. }
  1771. }
  1772. }
  1773. }
  1774. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1775. return s0;
  1776. }
  1777. function peg$parseruntimeLiteral() {
  1778. var s0;
  1779. var key = peg$currPos * 66 + 27,
  1780. cached = peg$resultsCache[key];
  1781. if (cached) {
  1782. peg$currPos = cached.nextPos;
  1783. return cached.result;
  1784. }
  1785. s0 = peg$parsedynamicDictionary();
  1786. if (s0 === peg$FAILED) {
  1787. s0 = peg$parsedynamicArray();
  1788. if (s0 === peg$FAILED) {
  1789. s0 = peg$parseblock();
  1790. if (s0 === peg$FAILED) {
  1791. s0 = peg$parsestx();
  1792. }
  1793. }
  1794. }
  1795. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1796. return s0;
  1797. }
  1798. function peg$parseliteral() {
  1799. var s0;
  1800. var key = peg$currPos * 66 + 28,
  1801. cached = peg$resultsCache[key];
  1802. if (cached) {
  1803. peg$currPos = cached.nextPos;
  1804. return cached.result;
  1805. }
  1806. s0 = peg$parseruntimeLiteral();
  1807. if (s0 === peg$FAILED) {
  1808. s0 = peg$parseparseTimeLiteral();
  1809. }
  1810. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1811. return s0;
  1812. }
  1813. function peg$parsevariable() {
  1814. var s0, s1;
  1815. var key = peg$currPos * 66 + 29,
  1816. cached = peg$resultsCache[key];
  1817. if (cached) {
  1818. peg$currPos = cached.nextPos;
  1819. return cached.result;
  1820. }
  1821. s0 = peg$currPos;
  1822. s1 = peg$parseidentifier();
  1823. if (s1 !== peg$FAILED) {
  1824. peg$savedPos = s0;
  1825. s1 = peg$c72(s1);
  1826. }
  1827. s0 = s1;
  1828. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1829. return s0;
  1830. }
  1831. function peg$parsebinarySelector() {
  1832. var s0, s1, s2;
  1833. var key = peg$currPos * 66 + 30,
  1834. cached = peg$resultsCache[key];
  1835. if (cached) {
  1836. peg$currPos = cached.nextPos;
  1837. return cached.result;
  1838. }
  1839. s0 = peg$currPos;
  1840. s1 = [];
  1841. if (peg$c73.test(input.charAt(peg$currPos))) {
  1842. s2 = input.charAt(peg$currPos);
  1843. peg$currPos++;
  1844. } else {
  1845. s2 = peg$FAILED;
  1846. if (peg$silentFails === 0) { peg$fail(peg$c74); }
  1847. }
  1848. if (s2 !== peg$FAILED) {
  1849. while (s2 !== peg$FAILED) {
  1850. s1.push(s2);
  1851. if (peg$c73.test(input.charAt(peg$currPos))) {
  1852. s2 = input.charAt(peg$currPos);
  1853. peg$currPos++;
  1854. } else {
  1855. s2 = peg$FAILED;
  1856. if (peg$silentFails === 0) { peg$fail(peg$c74); }
  1857. }
  1858. }
  1859. } else {
  1860. s1 = peg$FAILED;
  1861. }
  1862. if (s1 !== peg$FAILED) {
  1863. s0 = input.substring(s0, peg$currPos);
  1864. } else {
  1865. s0 = s1;
  1866. }
  1867. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1868. return s0;
  1869. }
  1870. function peg$parsewsKeywordPattern() {
  1871. var s0, s1, s2, s3, s4, s5, s6;
  1872. var key = peg$currPos * 66 + 31,
  1873. cached = peg$resultsCache[key];
  1874. if (cached) {
  1875. peg$currPos = cached.nextPos;
  1876. return cached.result;
  1877. }
  1878. s0 = peg$currPos;
  1879. s1 = [];
  1880. s2 = peg$currPos;
  1881. s3 = peg$parsews();
  1882. if (s3 !== peg$FAILED) {
  1883. s4 = peg$parsekeyword();
  1884. if (s4 !== peg$FAILED) {
  1885. s5 = peg$parsews();
  1886. if (s5 !== peg$FAILED) {
  1887. s6 = peg$parseidentifier();
  1888. if (s6 !== peg$FAILED) {
  1889. peg$savedPos = s2;
  1890. s3 = peg$c75(s4, s6);
  1891. s2 = s3;
  1892. } else {
  1893. peg$currPos = s2;
  1894. s2 = peg$FAILED;
  1895. }
  1896. } else {
  1897. peg$currPos = s2;
  1898. s2 = peg$FAILED;
  1899. }
  1900. } else {
  1901. peg$currPos = s2;
  1902. s2 = peg$FAILED;
  1903. }
  1904. } else {
  1905. peg$currPos = s2;
  1906. s2 = peg$FAILED;
  1907. }
  1908. if (s2 !== peg$FAILED) {
  1909. while (s2 !== peg$FAILED) {
  1910. s1.push(s2);
  1911. s2 = peg$currPos;
  1912. s3 = peg$parsews();
  1913. if (s3 !== peg$FAILED) {
  1914. s4 = peg$parsekeyword();
  1915. if (s4 !== peg$FAILED) {
  1916. s5 = peg$parsews();
  1917. if (s5 !== peg$FAILED) {
  1918. s6 = peg$parseidentifier();
  1919. if (s6 !== peg$FAILED) {
  1920. peg$savedPos = s2;
  1921. s3 = peg$c75(s4, s6);
  1922. s2 = s3;
  1923. } else {
  1924. peg$currPos = s2;
  1925. s2 = peg$FAILED;
  1926. }
  1927. } else {
  1928. peg$currPos = s2;
  1929. s2 = peg$FAILED;
  1930. }
  1931. } else {
  1932. peg$currPos = s2;
  1933. s2 = peg$FAILED;
  1934. }
  1935. } else {
  1936. peg$currPos = s2;
  1937. s2 = peg$FAILED;
  1938. }
  1939. }
  1940. } else {
  1941. s1 = peg$FAILED;
  1942. }
  1943. if (s1 !== peg$FAILED) {
  1944. peg$savedPos = s0;
  1945. s1 = peg$c76(s1);
  1946. }
  1947. s0 = s1;
  1948. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1949. return s0;
  1950. }
  1951. function peg$parsewsBinaryPattern() {
  1952. var s0, s1, s2, s3, s4;
  1953. var key = peg$currPos * 66 + 32,
  1954. cached = peg$resultsCache[key];
  1955. if (cached) {
  1956. peg$currPos = cached.nextPos;
  1957. return cached.result;
  1958. }
  1959. s0 = peg$currPos;
  1960. s1 = peg$parsews();
  1961. if (s1 !== peg$FAILED) {
  1962. s2 = peg$parsebinarySelector();
  1963. if (s2 !== peg$FAILED) {
  1964. s3 = peg$parsews();
  1965. if (s3 !== peg$FAILED) {
  1966. s4 = peg$parseidentifier();
  1967. if (s4 !== peg$FAILED) {
  1968. peg$savedPos = s0;
  1969. s1 = peg$c77(s2, s4);
  1970. s0 = s1;
  1971. } else {
  1972. peg$currPos = s0;
  1973. s0 = peg$FAILED;
  1974. }
  1975. } else {
  1976. peg$currPos = s0;
  1977. s0 = peg$FAILED;
  1978. }
  1979. } else {
  1980. peg$currPos = s0;
  1981. s0 = peg$FAILED;
  1982. }
  1983. } else {
  1984. peg$currPos = s0;
  1985. s0 = peg$FAILED;
  1986. }
  1987. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  1988. return s0;
  1989. }
  1990. function peg$parsewsUnaryPattern() {
  1991. var s0, s1, s2;
  1992. var key = peg$currPos * 66 + 33,
  1993. cached = peg$resultsCache[key];
  1994. if (cached) {
  1995. peg$currPos = cached.nextPos;
  1996. return cached.result;
  1997. }
  1998. s0 = peg$currPos;
  1999. s1 = peg$parsews();
  2000. if (s1 !== peg$FAILED) {
  2001. s2 = peg$parseidentifier();
  2002. if (s2 !== peg$FAILED) {
  2003. peg$savedPos = s0;
  2004. s1 = peg$c78(s2);
  2005. s0 = s1;
  2006. } else {
  2007. peg$currPos = s0;
  2008. s0 = peg$FAILED;
  2009. }
  2010. } else {
  2011. peg$currPos = s0;
  2012. s0 = peg$FAILED;
  2013. }
  2014. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2015. return s0;
  2016. }
  2017. function peg$parseexpression() {
  2018. var s0;
  2019. var key = peg$currPos * 66 + 34,
  2020. cached = peg$resultsCache[key];
  2021. if (cached) {
  2022. peg$currPos = cached.nextPos;
  2023. return cached.result;
  2024. }
  2025. s0 = peg$parseassignment();
  2026. if (s0 === peg$FAILED) {
  2027. s0 = peg$parsecascade();
  2028. if (s0 === peg$FAILED) {
  2029. s0 = peg$parsekeywordSend();
  2030. }
  2031. }
  2032. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2033. return s0;
  2034. }
  2035. function peg$parsewsExpressionsRest() {
  2036. var s0, s1, s2, s3, s4;
  2037. var key = peg$currPos * 66 + 35,
  2038. cached = peg$resultsCache[key];
  2039. if (cached) {
  2040. peg$currPos = cached.nextPos;
  2041. return cached.result;
  2042. }
  2043. s0 = peg$currPos;
  2044. s1 = peg$parsews();
  2045. if (s1 !== peg$FAILED) {
  2046. if (input.charCodeAt(peg$currPos) === 46) {
  2047. s2 = peg$c6;
  2048. peg$currPos++;
  2049. } else {
  2050. s2 = peg$FAILED;
  2051. if (peg$silentFails === 0) { peg$fail(peg$c7); }
  2052. }
  2053. if (s2 !== peg$FAILED) {
  2054. s3 = peg$parsemaybeDotsWs();
  2055. if (s3 !== peg$FAILED) {
  2056. s4 = peg$parseexpression();
  2057. if (s4 !== peg$FAILED) {
  2058. peg$savedPos = s0;
  2059. s1 = peg$c79(s4);
  2060. s0 = s1;
  2061. } else {
  2062. peg$currPos = s0;
  2063. s0 = peg$FAILED;
  2064. }
  2065. } else {
  2066. peg$currPos = s0;
  2067. s0 = peg$FAILED;
  2068. }
  2069. } else {
  2070. peg$currPos = s0;
  2071. s0 = peg$FAILED;
  2072. }
  2073. } else {
  2074. peg$currPos = s0;
  2075. s0 = peg$FAILED;
  2076. }
  2077. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2078. return s0;
  2079. }
  2080. function peg$parsewsExpressions() {
  2081. var s0, s1, s2, s3, s4;
  2082. var key = peg$currPos * 66 + 36,
  2083. cached = peg$resultsCache[key];
  2084. if (cached) {
  2085. peg$currPos = cached.nextPos;
  2086. return cached.result;
  2087. }
  2088. s0 = peg$currPos;
  2089. s1 = peg$parsemaybeDotsWs();
  2090. if (s1 !== peg$FAILED) {
  2091. s2 = peg$parseexpression();
  2092. if (s2 !== peg$FAILED) {
  2093. s3 = [];
  2094. s4 = peg$parsewsExpressionsRest();
  2095. while (s4 !== peg$FAILED) {
  2096. s3.push(s4);
  2097. s4 = peg$parsewsExpressionsRest();
  2098. }
  2099. if (s3 !== peg$FAILED) {
  2100. peg$savedPos = s0;
  2101. s1 = peg$c80(s2, s3);
  2102. s0 = s1;
  2103. } else {
  2104. peg$currPos = s0;
  2105. s0 = peg$FAILED;
  2106. }
  2107. } else {
  2108. peg$currPos = s0;
  2109. s0 = peg$FAILED;
  2110. }
  2111. } else {
  2112. peg$currPos = s0;
  2113. s0 = peg$FAILED;
  2114. }
  2115. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2116. return s0;
  2117. }
  2118. function peg$parseassignment() {
  2119. var s0, s1, s2, s3, s4, s5;
  2120. var key = peg$currPos * 66 + 37,
  2121. cached = peg$resultsCache[key];
  2122. if (cached) {
  2123. peg$currPos = cached.nextPos;
  2124. return cached.result;
  2125. }
  2126. s0 = peg$currPos;
  2127. s1 = peg$parsevariable();
  2128. if (s1 !== peg$FAILED) {
  2129. s2 = peg$parsews();
  2130. if (s2 !== peg$FAILED) {
  2131. if (input.substr(peg$currPos, 2) === peg$c81) {
  2132. s3 = peg$c81;
  2133. peg$currPos += 2;
  2134. } else {
  2135. s3 = peg$FAILED;
  2136. if (peg$silentFails === 0) { peg$fail(peg$c82); }
  2137. }
  2138. if (s3 !== peg$FAILED) {
  2139. s4 = peg$parsews();
  2140. if (s4 !== peg$FAILED) {
  2141. s5 = peg$parseexpression();
  2142. if (s5 !== peg$FAILED) {
  2143. peg$savedPos = s0;
  2144. s1 = peg$c83(s1, s5);
  2145. s0 = s1;
  2146. } else {
  2147. peg$currPos = s0;
  2148. s0 = peg$FAILED;
  2149. }
  2150. } else {
  2151. peg$currPos = s0;
  2152. s0 = peg$FAILED;
  2153. }
  2154. } else {
  2155. peg$currPos = s0;
  2156. s0 = peg$FAILED;
  2157. }
  2158. } else {
  2159. peg$currPos = s0;
  2160. s0 = peg$FAILED;
  2161. }
  2162. } else {
  2163. peg$currPos = s0;
  2164. s0 = peg$FAILED;
  2165. }
  2166. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2167. return s0;
  2168. }
  2169. function peg$parseret() {
  2170. var s0, s1, s2, s3;
  2171. var key = peg$currPos * 66 + 38,
  2172. cached = peg$resultsCache[key];
  2173. if (cached) {
  2174. peg$currPos = cached.nextPos;
  2175. return cached.result;
  2176. }
  2177. s0 = peg$currPos;
  2178. if (input.charCodeAt(peg$currPos) === 94) {
  2179. s1 = peg$c84;
  2180. peg$currPos++;
  2181. } else {
  2182. s1 = peg$FAILED;
  2183. if (peg$silentFails === 0) { peg$fail(peg$c85); }
  2184. }
  2185. if (s1 !== peg$FAILED) {
  2186. s2 = peg$parsews();
  2187. if (s2 !== peg$FAILED) {
  2188. s3 = peg$parseexpression();
  2189. if (s3 !== peg$FAILED) {
  2190. peg$savedPos = s0;
  2191. s1 = peg$c86(s3);
  2192. s0 = s1;
  2193. } else {
  2194. peg$currPos = s0;
  2195. s0 = peg$FAILED;
  2196. }
  2197. } else {
  2198. peg$currPos = s0;
  2199. s0 = peg$FAILED;
  2200. }
  2201. } else {
  2202. peg$currPos = s0;
  2203. s0 = peg$FAILED;
  2204. }
  2205. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2206. return s0;
  2207. }
  2208. function peg$parsetemps() {
  2209. var s0, s1, s2, s3, s4, s5;
  2210. var key = peg$currPos * 66 + 39,
  2211. cached = peg$resultsCache[key];
  2212. if (cached) {
  2213. peg$currPos = cached.nextPos;
  2214. return cached.result;
  2215. }
  2216. s0 = peg$currPos;
  2217. if (input.charCodeAt(peg$currPos) === 124) {
  2218. s1 = peg$c87;
  2219. peg$currPos++;
  2220. } else {
  2221. s1 = peg$FAILED;
  2222. if (peg$silentFails === 0) { peg$fail(peg$c88); }
  2223. }
  2224. if (s1 !== peg$FAILED) {
  2225. s2 = [];
  2226. s3 = peg$currPos;
  2227. s4 = peg$parsews();
  2228. if (s4 !== peg$FAILED) {
  2229. s5 = peg$parseidentifier();
  2230. if (s5 !== peg$FAILED) {
  2231. peg$savedPos = s3;
  2232. s4 = peg$c89(s5);
  2233. s3 = s4;
  2234. } else {
  2235. peg$currPos = s3;
  2236. s3 = peg$FAILED;
  2237. }
  2238. } else {
  2239. peg$currPos = s3;
  2240. s3 = peg$FAILED;
  2241. }
  2242. while (s3 !== peg$FAILED) {
  2243. s2.push(s3);
  2244. s3 = peg$currPos;
  2245. s4 = peg$parsews();
  2246. if (s4 !== peg$FAILED) {
  2247. s5 = peg$parseidentifier();
  2248. if (s5 !== peg$FAILED) {
  2249. peg$savedPos = s3;
  2250. s4 = peg$c89(s5);
  2251. s3 = s4;
  2252. } else {
  2253. peg$currPos = s3;
  2254. s3 = peg$FAILED;
  2255. }
  2256. } else {
  2257. peg$currPos = s3;
  2258. s3 = peg$FAILED;
  2259. }
  2260. }
  2261. if (s2 !== peg$FAILED) {
  2262. s3 = peg$parsews();
  2263. if (s3 !== peg$FAILED) {
  2264. if (input.charCodeAt(peg$currPos) === 124) {
  2265. s4 = peg$c87;
  2266. peg$currPos++;
  2267. } else {
  2268. s4 = peg$FAILED;
  2269. if (peg$silentFails === 0) { peg$fail(peg$c88); }
  2270. }
  2271. if (s4 !== peg$FAILED) {
  2272. peg$savedPos = s0;
  2273. s1 = peg$c90(s2);
  2274. s0 = s1;
  2275. } else {
  2276. peg$currPos = s0;
  2277. s0 = peg$FAILED;
  2278. }
  2279. } else {
  2280. peg$currPos = s0;
  2281. s0 = peg$FAILED;
  2282. }
  2283. } else {
  2284. peg$currPos = s0;
  2285. s0 = peg$FAILED;
  2286. }
  2287. } else {
  2288. peg$currPos = s0;
  2289. s0 = peg$FAILED;
  2290. }
  2291. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2292. return s0;
  2293. }
  2294. function peg$parsewsBlockParamList() {
  2295. var s0, s1, s2, s3, s4, s5, s6;
  2296. var key = peg$currPos * 66 + 40,
  2297. cached = peg$resultsCache[key];
  2298. if (cached) {
  2299. peg$currPos = cached.nextPos;
  2300. return cached.result;
  2301. }
  2302. s0 = peg$currPos;
  2303. s1 = [];
  2304. s2 = peg$currPos;
  2305. s3 = peg$parsews();
  2306. if (s3 !== peg$FAILED) {
  2307. if (input.charCodeAt(peg$currPos) === 58) {
  2308. s4 = peg$c12;
  2309. peg$currPos++;
  2310. } else {
  2311. s4 = peg$FAILED;
  2312. if (peg$silentFails === 0) { peg$fail(peg$c13); }
  2313. }
  2314. if (s4 !== peg$FAILED) {
  2315. s5 = peg$parsews();
  2316. if (s5 !== peg$FAILED) {
  2317. s6 = peg$parseidentifier();
  2318. if (s6 !== peg$FAILED) {
  2319. peg$savedPos = s2;
  2320. s3 = peg$c91(s6);
  2321. s2 = s3;
  2322. } else {
  2323. peg$currPos = s2;
  2324. s2 = peg$FAILED;
  2325. }
  2326. } else {
  2327. peg$currPos = s2;
  2328. s2 = peg$FAILED;
  2329. }
  2330. } else {
  2331. peg$currPos = s2;
  2332. s2 = peg$FAILED;
  2333. }
  2334. } else {
  2335. peg$currPos = s2;
  2336. s2 = peg$FAILED;
  2337. }
  2338. if (s2 !== peg$FAILED) {
  2339. while (s2 !== peg$FAILED) {
  2340. s1.push(s2);
  2341. s2 = peg$currPos;
  2342. s3 = peg$parsews();
  2343. if (s3 !== peg$FAILED) {
  2344. if (input.charCodeAt(peg$currPos) === 58) {
  2345. s4 = peg$c12;
  2346. peg$currPos++;
  2347. } else {
  2348. s4 = peg$FAILED;
  2349. if (peg$silentFails === 0) { peg$fail(peg$c13); }
  2350. }
  2351. if (s4 !== peg$FAILED) {
  2352. s5 = peg$parsews();
  2353. if (s5 !== peg$FAILED) {
  2354. s6 = peg$parseidentifier();
  2355. if (s6 !== peg$FAILED) {
  2356. peg$savedPos = s2;
  2357. s3 = peg$c91(s6);
  2358. s2 = s3;
  2359. } else {
  2360. peg$currPos = s2;
  2361. s2 = peg$FAILED;
  2362. }
  2363. } else {
  2364. peg$currPos = s2;
  2365. s2 = peg$FAILED;
  2366. }
  2367. } else {
  2368. peg$currPos = s2;
  2369. s2 = peg$FAILED;
  2370. }
  2371. } else {
  2372. peg$currPos = s2;
  2373. s2 = peg$FAILED;
  2374. }
  2375. }
  2376. } else {
  2377. s1 = peg$FAILED;
  2378. }
  2379. if (s1 !== peg$FAILED) {
  2380. s2 = peg$parsews();
  2381. if (s2 !== peg$FAILED) {
  2382. if (input.charCodeAt(peg$currPos) === 124) {
  2383. s3 = peg$c87;
  2384. peg$currPos++;
  2385. } else {
  2386. s3 = peg$FAILED;
  2387. if (peg$silentFails === 0) { peg$fail(peg$c88); }
  2388. }
  2389. if (s3 !== peg$FAILED) {
  2390. peg$savedPos = s0;
  2391. s1 = peg$c92(s1);
  2392. s0 = s1;
  2393. } else {
  2394. peg$currPos = s0;
  2395. s0 = peg$FAILED;
  2396. }
  2397. } else {
  2398. peg$currPos = s0;
  2399. s0 = peg$FAILED;
  2400. }
  2401. } else {
  2402. peg$currPos = s0;
  2403. s0 = peg$FAILED;
  2404. }
  2405. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2406. return s0;
  2407. }
  2408. function peg$parsesubexpression() {
  2409. var s0, s1, s2, s3, s4, s5;
  2410. var key = peg$currPos * 66 + 41,
  2411. cached = peg$resultsCache[key];
  2412. if (cached) {
  2413. peg$currPos = cached.nextPos;
  2414. return cached.result;
  2415. }
  2416. s0 = peg$currPos;
  2417. if (input.charCodeAt(peg$currPos) === 40) {
  2418. s1 = peg$c51;
  2419. peg$currPos++;
  2420. } else {
  2421. s1 = peg$FAILED;
  2422. if (peg$silentFails === 0) { peg$fail(peg$c52); }
  2423. }
  2424. if (s1 !== peg$FAILED) {
  2425. s2 = peg$parsews();
  2426. if (s2 !== peg$FAILED) {
  2427. s3 = peg$parseexpression();
  2428. if (s3 !== peg$FAILED) {
  2429. s4 = peg$parsews();
  2430. if (s4 !== peg$FAILED) {
  2431. if (input.charCodeAt(peg$currPos) === 41) {
  2432. s5 = peg$c48;
  2433. peg$currPos++;
  2434. } else {
  2435. s5 = peg$FAILED;
  2436. if (peg$silentFails === 0) { peg$fail(peg$c49); }
  2437. }
  2438. if (s5 !== peg$FAILED) {
  2439. peg$savedPos = s0;
  2440. s1 = peg$c79(s3);
  2441. s0 = s1;
  2442. } else {
  2443. peg$currPos = s0;
  2444. s0 = peg$FAILED;
  2445. }
  2446. } else {
  2447. peg$currPos = s0;
  2448. s0 = peg$FAILED;
  2449. }
  2450. } else {
  2451. peg$currPos = s0;
  2452. s0 = peg$FAILED;
  2453. }
  2454. } else {
  2455. peg$currPos = s0;
  2456. s0 = peg$FAILED;
  2457. }
  2458. } else {
  2459. peg$currPos = s0;
  2460. s0 = peg$FAILED;
  2461. }
  2462. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2463. return s0;
  2464. }
  2465. function peg$parsewsStatementsWs() {
  2466. var s0, s1, s2, s3, s4, s5, s6;
  2467. var key = peg$currPos * 66 + 42,
  2468. cached = peg$resultsCache[key];
  2469. if (cached) {
  2470. peg$currPos = cached.nextPos;
  2471. return cached.result;
  2472. }
  2473. s0 = peg$currPos;
  2474. s1 = peg$parsemaybeDotsWs();
  2475. if (s1 !== peg$FAILED) {
  2476. s2 = peg$parseret();
  2477. if (s2 !== peg$FAILED) {
  2478. s3 = peg$parsemaybeDotsWs();
  2479. if (s3 !== peg$FAILED) {
  2480. peg$savedPos = s0;
  2481. s1 = peg$c93(s2);
  2482. s0 = s1;
  2483. } else {
  2484. peg$currPos = s0;
  2485. s0 = peg$FAILED;
  2486. }
  2487. } else {
  2488. peg$currPos = s0;
  2489. s0 = peg$FAILED;
  2490. }
  2491. } else {
  2492. peg$currPos = s0;
  2493. s0 = peg$FAILED;
  2494. }
  2495. if (s0 === peg$FAILED) {
  2496. s0 = peg$currPos;
  2497. s1 = peg$parsewsExpressions();
  2498. if (s1 !== peg$FAILED) {
  2499. s2 = peg$parsews();
  2500. if (s2 !== peg$FAILED) {
  2501. if (input.charCodeAt(peg$currPos) === 46) {
  2502. s3 = peg$c6;
  2503. peg$currPos++;
  2504. } else {
  2505. s3 = peg$FAILED;
  2506. if (peg$silentFails === 0) { peg$fail(peg$c7); }
  2507. }
  2508. if (s3 !== peg$FAILED) {
  2509. s4 = peg$parsemaybeDotsWs();
  2510. if (s4 !== peg$FAILED) {
  2511. s5 = peg$parseret();
  2512. if (s5 !== peg$FAILED) {
  2513. s6 = peg$parsemaybeDotsWs();
  2514. if (s6 !== peg$FAILED) {
  2515. peg$savedPos = s0;
  2516. s1 = peg$c94(s1, s5);
  2517. s0 = s1;
  2518. } else {
  2519. peg$currPos = s0;
  2520. s0 = peg$FAILED;
  2521. }
  2522. } else {
  2523. peg$currPos = s0;
  2524. s0 = peg$FAILED;
  2525. }
  2526. } else {
  2527. peg$currPos = s0;
  2528. s0 = peg$FAILED;
  2529. }
  2530. } else {
  2531. peg$currPos = s0;
  2532. s0 = peg$FAILED;
  2533. }
  2534. } else {
  2535. peg$currPos = s0;
  2536. s0 = peg$FAILED;
  2537. }
  2538. } else {
  2539. peg$currPos = s0;
  2540. s0 = peg$FAILED;
  2541. }
  2542. if (s0 === peg$FAILED) {
  2543. s0 = peg$currPos;
  2544. s1 = peg$parsewsExpressions();
  2545. if (s1 === peg$FAILED) {
  2546. s1 = null;
  2547. }
  2548. if (s1 !== peg$FAILED) {
  2549. s2 = peg$parsemaybeDotsWs();
  2550. if (s2 !== peg$FAILED) {
  2551. peg$savedPos = s0;
  2552. s1 = peg$c95(s1);
  2553. s0 = s1;
  2554. } else {
  2555. peg$currPos = s0;
  2556. s0 = peg$FAILED;
  2557. }
  2558. } else {
  2559. peg$currPos = s0;
  2560. s0 = peg$FAILED;
  2561. }
  2562. }
  2563. }
  2564. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2565. return s0;
  2566. }
  2567. function peg$parsewsSequenceWs() {
  2568. var s0, s1, s2, s3;
  2569. var key = peg$currPos * 66 + 43,
  2570. cached = peg$resultsCache[key];
  2571. if (cached) {
  2572. peg$currPos = cached.nextPos;
  2573. return cached.result;
  2574. }
  2575. s0 = peg$currPos;
  2576. s1 = peg$parsews();
  2577. if (s1 !== peg$FAILED) {
  2578. s2 = peg$parsejsStatement();
  2579. if (s2 !== peg$FAILED) {
  2580. s3 = peg$parsews();
  2581. if (s3 !== peg$FAILED) {
  2582. peg$savedPos = s0;
  2583. s1 = peg$c96(s2);
  2584. s0 = s1;
  2585. } else {
  2586. peg$currPos = s0;
  2587. s0 = peg$FAILED;
  2588. }
  2589. } else {
  2590. peg$currPos = s0;
  2591. s0 = peg$FAILED;
  2592. }
  2593. } else {
  2594. peg$currPos = s0;
  2595. s0 = peg$FAILED;
  2596. }
  2597. if (s0 === peg$FAILED) {
  2598. s0 = peg$parsewsStSequenceWs();
  2599. }
  2600. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2601. return s0;
  2602. }
  2603. function peg$parsewsStSequenceWs() {
  2604. var s0, s1, s2, s3;
  2605. var key = peg$currPos * 66 + 44,
  2606. cached = peg$resultsCache[key];
  2607. if (cached) {
  2608. peg$currPos = cached.nextPos;
  2609. return cached.result;
  2610. }
  2611. s0 = peg$currPos;
  2612. s1 = peg$parsews();
  2613. if (s1 !== peg$FAILED) {
  2614. s2 = peg$parsetemps();
  2615. if (s2 === peg$FAILED) {
  2616. s2 = null;
  2617. }
  2618. if (s2 !== peg$FAILED) {
  2619. s3 = peg$parsewsStatementsWs();
  2620. if (s3 === peg$FAILED) {
  2621. s3 = null;
  2622. }
  2623. if (s3 !== peg$FAILED) {
  2624. peg$savedPos = s0;
  2625. s1 = peg$c97(s2, s3);
  2626. s0 = s1;
  2627. } else {
  2628. peg$currPos = s0;
  2629. s0 = peg$FAILED;
  2630. }
  2631. } else {
  2632. peg$currPos = s0;
  2633. s0 = peg$FAILED;
  2634. }
  2635. } else {
  2636. peg$currPos = s0;
  2637. s0 = peg$FAILED;
  2638. }
  2639. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2640. return s0;
  2641. }
  2642. function peg$parseblock() {
  2643. var s0, s1, s2, s3, s4;
  2644. var key = peg$currPos * 66 + 45,
  2645. cached = peg$resultsCache[key];
  2646. if (cached) {
  2647. peg$currPos = cached.nextPos;
  2648. return cached.result;
  2649. }
  2650. s0 = peg$currPos;
  2651. if (input.charCodeAt(peg$currPos) === 91) {
  2652. s1 = peg$c98;
  2653. peg$currPos++;
  2654. } else {
  2655. s1 = peg$FAILED;
  2656. if (peg$silentFails === 0) { peg$fail(peg$c99); }
  2657. }
  2658. if (s1 !== peg$FAILED) {
  2659. s2 = peg$parsewsBlockParamList();
  2660. if (s2 === peg$FAILED) {
  2661. s2 = null;
  2662. }
  2663. if (s2 !== peg$FAILED) {
  2664. s3 = peg$parsewsSequenceWs();
  2665. if (s3 !== peg$FAILED) {
  2666. if (input.charCodeAt(peg$currPos) === 93) {
  2667. s4 = peg$c100;
  2668. peg$currPos++;
  2669. } else {
  2670. s4 = peg$FAILED;
  2671. if (peg$silentFails === 0) { peg$fail(peg$c101); }
  2672. }
  2673. if (s4 !== peg$FAILED) {
  2674. peg$savedPos = s0;
  2675. s1 = peg$c102(s2, s3);
  2676. s0 = s1;
  2677. } else {
  2678. peg$currPos = s0;
  2679. s0 = peg$FAILED;
  2680. }
  2681. } else {
  2682. peg$currPos = s0;
  2683. s0 = peg$FAILED;
  2684. }
  2685. } else {
  2686. peg$currPos = s0;
  2687. s0 = peg$FAILED;
  2688. }
  2689. } else {
  2690. peg$currPos = s0;
  2691. s0 = peg$FAILED;
  2692. }
  2693. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2694. return s0;
  2695. }
  2696. function peg$parseoperand() {
  2697. var s0;
  2698. var key = peg$currPos * 66 + 46,
  2699. cached = peg$resultsCache[key];
  2700. if (cached) {
  2701. peg$currPos = cached.nextPos;
  2702. return cached.result;
  2703. }
  2704. s0 = peg$parseliteral();
  2705. if (s0 === peg$FAILED) {
  2706. s0 = peg$parsevariable();
  2707. if (s0 === peg$FAILED) {
  2708. s0 = peg$parsesubexpression();
  2709. }
  2710. }
  2711. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2712. return s0;
  2713. }
  2714. function peg$parsewsUnaryMessage() {
  2715. var s0, s1, s2, s3, s4;
  2716. var key = peg$currPos * 66 + 47,
  2717. cached = peg$resultsCache[key];
  2718. if (cached) {
  2719. peg$currPos = cached.nextPos;
  2720. return cached.result;
  2721. }
  2722. s0 = peg$currPos;
  2723. s1 = peg$parsews();
  2724. if (s1 !== peg$FAILED) {
  2725. s2 = peg$parseidentifier();
  2726. if (s2 !== peg$FAILED) {
  2727. s3 = peg$currPos;
  2728. peg$silentFails++;
  2729. if (input.charCodeAt(peg$currPos) === 58) {
  2730. s4 = peg$c12;
  2731. peg$currPos++;
  2732. } else {
  2733. s4 = peg$FAILED;
  2734. if (peg$silentFails === 0) { peg$fail(peg$c13); }
  2735. }
  2736. peg$silentFails--;
  2737. if (s4 === peg$FAILED) {
  2738. s3 = void 0;
  2739. } else {
  2740. peg$currPos = s3;
  2741. s3 = peg$FAILED;
  2742. }
  2743. if (s3 !== peg$FAILED) {
  2744. peg$savedPos = s0;
  2745. s1 = peg$c103(s2);
  2746. s0 = s1;
  2747. } else {
  2748. peg$currPos = s0;
  2749. s0 = peg$FAILED;
  2750. }
  2751. } else {
  2752. peg$currPos = s0;
  2753. s0 = peg$FAILED;
  2754. }
  2755. } else {
  2756. peg$currPos = s0;
  2757. s0 = peg$FAILED;
  2758. }
  2759. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2760. return s0;
  2761. }
  2762. function peg$parseunarySend() {
  2763. var s0, s1, s2, s3;
  2764. var key = peg$currPos * 66 + 48,
  2765. cached = peg$resultsCache[key];
  2766. if (cached) {
  2767. peg$currPos = cached.nextPos;
  2768. return cached.result;
  2769. }
  2770. s0 = peg$currPos;
  2771. s1 = peg$parseoperand();
  2772. if (s1 !== peg$FAILED) {
  2773. s2 = [];
  2774. s3 = peg$parsewsUnaryMessage();
  2775. while (s3 !== peg$FAILED) {
  2776. s2.push(s3);
  2777. s3 = peg$parsewsUnaryMessage();
  2778. }
  2779. if (s2 !== peg$FAILED) {
  2780. peg$savedPos = s0;
  2781. s1 = peg$c104(s1, s2);
  2782. s0 = s1;
  2783. } else {
  2784. peg$currPos = s0;
  2785. s0 = peg$FAILED;
  2786. }
  2787. } else {
  2788. peg$currPos = s0;
  2789. s0 = peg$FAILED;
  2790. }
  2791. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2792. return s0;
  2793. }
  2794. function peg$parsewsBinaryMessage() {
  2795. var s0, s1, s2, s3, s4;
  2796. var key = peg$currPos * 66 + 49,
  2797. cached = peg$resultsCache[key];
  2798. if (cached) {
  2799. peg$currPos = cached.nextPos;
  2800. return cached.result;
  2801. }
  2802. s0 = peg$currPos;
  2803. s1 = peg$parsews();
  2804. if (s1 !== peg$FAILED) {
  2805. s2 = peg$parsebinarySelector();
  2806. if (s2 !== peg$FAILED) {
  2807. s3 = peg$parsews();
  2808. if (s3 !== peg$FAILED) {
  2809. s4 = peg$parseunarySend();
  2810. if (s4 !== peg$FAILED) {
  2811. peg$savedPos = s0;
  2812. s1 = peg$c105(s2, s4);
  2813. s0 = s1;
  2814. } else {
  2815. peg$currPos = s0;
  2816. s0 = peg$FAILED;
  2817. }
  2818. } else {
  2819. peg$currPos = s0;
  2820. s0 = peg$FAILED;
  2821. }
  2822. } else {
  2823. peg$currPos = s0;
  2824. s0 = peg$FAILED;
  2825. }
  2826. } else {
  2827. peg$currPos = s0;
  2828. s0 = peg$FAILED;
  2829. }
  2830. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2831. return s0;
  2832. }
  2833. function peg$parsebinarySend() {
  2834. var s0, s1, s2, s3;
  2835. var key = peg$currPos * 66 + 50,
  2836. cached = peg$resultsCache[key];
  2837. if (cached) {
  2838. peg$currPos = cached.nextPos;
  2839. return cached.result;
  2840. }
  2841. s0 = peg$currPos;
  2842. s1 = peg$parseunarySend();
  2843. if (s1 !== peg$FAILED) {
  2844. s2 = [];
  2845. s3 = peg$parsewsBinaryMessage();
  2846. while (s3 !== peg$FAILED) {
  2847. s2.push(s3);
  2848. s3 = peg$parsewsBinaryMessage();
  2849. }
  2850. if (s2 !== peg$FAILED) {
  2851. peg$savedPos = s0;
  2852. s1 = peg$c104(s1, s2);
  2853. s0 = s1;
  2854. } else {
  2855. peg$currPos = s0;
  2856. s0 = peg$FAILED;
  2857. }
  2858. } else {
  2859. peg$currPos = s0;
  2860. s0 = peg$FAILED;
  2861. }
  2862. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2863. return s0;
  2864. }
  2865. function peg$parsewsKeywordMessage() {
  2866. var s0, s1, s2, s3, s4, s5, s6;
  2867. var key = peg$currPos * 66 + 51,
  2868. cached = peg$resultsCache[key];
  2869. if (cached) {
  2870. peg$currPos = cached.nextPos;
  2871. return cached.result;
  2872. }
  2873. s0 = peg$currPos;
  2874. s1 = [];
  2875. s2 = peg$currPos;
  2876. s3 = peg$parsews();
  2877. if (s3 !== peg$FAILED) {
  2878. s4 = peg$parsekeyword();
  2879. if (s4 !== peg$FAILED) {
  2880. s5 = peg$parsews();
  2881. if (s5 !== peg$FAILED) {
  2882. s6 = peg$parsebinarySend();
  2883. if (s6 !== peg$FAILED) {
  2884. peg$savedPos = s2;
  2885. s3 = peg$c75(s4, s6);
  2886. s2 = s3;
  2887. } else {
  2888. peg$currPos = s2;
  2889. s2 = peg$FAILED;
  2890. }
  2891. } else {
  2892. peg$currPos = s2;
  2893. s2 = peg$FAILED;
  2894. }
  2895. } else {
  2896. peg$currPos = s2;
  2897. s2 = peg$FAILED;
  2898. }
  2899. } else {
  2900. peg$currPos = s2;
  2901. s2 = peg$FAILED;
  2902. }
  2903. if (s2 !== peg$FAILED) {
  2904. while (s2 !== peg$FAILED) {
  2905. s1.push(s2);
  2906. s2 = peg$currPos;
  2907. s3 = peg$parsews();
  2908. if (s3 !== peg$FAILED) {
  2909. s4 = peg$parsekeyword();
  2910. if (s4 !== peg$FAILED) {
  2911. s5 = peg$parsews();
  2912. if (s5 !== peg$FAILED) {
  2913. s6 = peg$parsebinarySend();
  2914. if (s6 !== peg$FAILED) {
  2915. peg$savedPos = s2;
  2916. s3 = peg$c75(s4, s6);
  2917. s2 = s3;
  2918. } else {
  2919. peg$currPos = s2;
  2920. s2 = peg$FAILED;
  2921. }
  2922. } else {
  2923. peg$currPos = s2;
  2924. s2 = peg$FAILED;
  2925. }
  2926. } else {
  2927. peg$currPos = s2;
  2928. s2 = peg$FAILED;
  2929. }
  2930. } else {
  2931. peg$currPos = s2;
  2932. s2 = peg$FAILED;
  2933. }
  2934. }
  2935. } else {
  2936. s1 = peg$FAILED;
  2937. }
  2938. if (s1 !== peg$FAILED) {
  2939. peg$savedPos = s0;
  2940. s1 = peg$c106(s1);
  2941. }
  2942. s0 = s1;
  2943. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2944. return s0;
  2945. }
  2946. function peg$parsekeywordSend() {
  2947. var s0, s1, s2;
  2948. var key = peg$currPos * 66 + 52,
  2949. cached = peg$resultsCache[key];
  2950. if (cached) {
  2951. peg$currPos = cached.nextPos;
  2952. return cached.result;
  2953. }
  2954. s0 = peg$currPos;
  2955. s1 = peg$parsebinarySend();
  2956. if (s1 !== peg$FAILED) {
  2957. s2 = peg$parsewsKeywordMessage();
  2958. if (s2 === peg$FAILED) {
  2959. s2 = null;
  2960. }
  2961. if (s2 !== peg$FAILED) {
  2962. peg$savedPos = s0;
  2963. s1 = peg$c107(s1, s2);
  2964. s0 = s1;
  2965. } else {
  2966. peg$currPos = s0;
  2967. s0 = peg$FAILED;
  2968. }
  2969. } else {
  2970. peg$currPos = s0;
  2971. s0 = peg$FAILED;
  2972. }
  2973. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2974. return s0;
  2975. }
  2976. function peg$parsewsMessage() {
  2977. var s0;
  2978. var key = peg$currPos * 66 + 53,
  2979. cached = peg$resultsCache[key];
  2980. if (cached) {
  2981. peg$currPos = cached.nextPos;
  2982. return cached.result;
  2983. }
  2984. s0 = peg$parsewsBinaryMessage();
  2985. if (s0 === peg$FAILED) {
  2986. s0 = peg$parsewsUnaryMessage();
  2987. if (s0 === peg$FAILED) {
  2988. s0 = peg$parsewsKeywordMessage();
  2989. }
  2990. }
  2991. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  2992. return s0;
  2993. }
  2994. function peg$parsecascade() {
  2995. var s0, s1, s2, s3, s4, s5, s6, s7;
  2996. var key = peg$currPos * 66 + 54,
  2997. cached = peg$resultsCache[key];
  2998. if (cached) {
  2999. peg$currPos = cached.nextPos;
  3000. return cached.result;
  3001. }
  3002. s0 = peg$currPos;
  3003. s1 = peg$parsekeywordSend();
  3004. if (s1 !== peg$FAILED) {
  3005. peg$savedPos = peg$currPos;
  3006. s2 = peg$c108(s1);
  3007. if (s2) {
  3008. s2 = void 0;
  3009. } else {
  3010. s2 = peg$FAILED;
  3011. }
  3012. if (s2 !== peg$FAILED) {
  3013. s3 = [];
  3014. s4 = peg$currPos;
  3015. s5 = peg$parsews();
  3016. if (s5 !== peg$FAILED) {
  3017. if (input.charCodeAt(peg$currPos) === 59) {
  3018. s6 = peg$c109;
  3019. peg$currPos++;
  3020. } else {
  3021. s6 = peg$FAILED;
  3022. if (peg$silentFails === 0) { peg$fail(peg$c110); }
  3023. }
  3024. if (s6 !== peg$FAILED) {
  3025. s7 = peg$parsewsMessage();
  3026. if (s7 !== peg$FAILED) {
  3027. peg$savedPos = s4;
  3028. s5 = peg$c111(s1, s7);
  3029. s4 = s5;
  3030. } else {
  3031. peg$currPos = s4;
  3032. s4 = peg$FAILED;
  3033. }
  3034. } else {
  3035. peg$currPos = s4;
  3036. s4 = peg$FAILED;
  3037. }
  3038. } else {
  3039. peg$currPos = s4;
  3040. s4 = peg$FAILED;
  3041. }
  3042. if (s4 !== peg$FAILED) {
  3043. while (s4 !== peg$FAILED) {
  3044. s3.push(s4);
  3045. s4 = peg$currPos;
  3046. s5 = peg$parsews();
  3047. if (s5 !== peg$FAILED) {
  3048. if (input.charCodeAt(peg$currPos) === 59) {
  3049. s6 = peg$c109;
  3050. peg$currPos++;
  3051. } else {
  3052. s6 = peg$FAILED;
  3053. if (peg$silentFails === 0) { peg$fail(peg$c110); }
  3054. }
  3055. if (s6 !== peg$FAILED) {
  3056. s7 = peg$parsewsMessage();
  3057. if (s7 !== peg$FAILED) {
  3058. peg$savedPos = s4;
  3059. s5 = peg$c111(s1, s7);
  3060. s4 = s5;
  3061. } else {
  3062. peg$currPos = s4;
  3063. s4 = peg$FAILED;
  3064. }
  3065. } else {
  3066. peg$currPos = s4;
  3067. s4 = peg$FAILED;
  3068. }
  3069. } else {
  3070. peg$currPos = s4;
  3071. s4 = peg$FAILED;
  3072. }
  3073. }
  3074. } else {
  3075. s3 = peg$FAILED;
  3076. }
  3077. if (s3 !== peg$FAILED) {
  3078. peg$savedPos = s0;
  3079. s1 = peg$c112(s1, s3);
  3080. s0 = s1;
  3081. } else {
  3082. peg$currPos = s0;
  3083. s0 = peg$FAILED;
  3084. }
  3085. } else {
  3086. peg$currPos = s0;
  3087. s0 = peg$FAILED;
  3088. }
  3089. } else {
  3090. peg$currPos = s0;
  3091. s0 = peg$FAILED;
  3092. }
  3093. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3094. return s0;
  3095. }
  3096. function peg$parsewsOperand() {
  3097. var s0, s1, s2;
  3098. var key = peg$currPos * 66 + 55,
  3099. cached = peg$resultsCache[key];
  3100. if (cached) {
  3101. peg$currPos = cached.nextPos;
  3102. return cached.result;
  3103. }
  3104. s0 = peg$currPos;
  3105. s1 = peg$parsews();
  3106. if (s1 !== peg$FAILED) {
  3107. s2 = peg$parseoperand();
  3108. if (s2 !== peg$FAILED) {
  3109. peg$savedPos = s0;
  3110. s1 = peg$c113(s2);
  3111. s0 = s1;
  3112. } else {
  3113. peg$currPos = s0;
  3114. s0 = peg$FAILED;
  3115. }
  3116. } else {
  3117. peg$currPos = s0;
  3118. s0 = peg$FAILED;
  3119. }
  3120. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3121. return s0;
  3122. }
  3123. function peg$parsewsKeyValueMessage() {
  3124. var s0, s1, s2, s3;
  3125. var key = peg$currPos * 66 + 56,
  3126. cached = peg$resultsCache[key];
  3127. if (cached) {
  3128. peg$currPos = cached.nextPos;
  3129. return cached.result;
  3130. }
  3131. s0 = peg$currPos;
  3132. s1 = peg$parsews();
  3133. if (s1 !== peg$FAILED) {
  3134. s2 = peg$parsekeyword();
  3135. if (s2 !== peg$FAILED) {
  3136. s3 = peg$parsewsOperand();
  3137. if (s3 !== peg$FAILED) {
  3138. peg$savedPos = s0;
  3139. s1 = peg$c114(s2, s3);
  3140. s0 = s1;
  3141. } else {
  3142. peg$currPos = s0;
  3143. s0 = peg$FAILED;
  3144. }
  3145. } else {
  3146. peg$currPos = s0;
  3147. s0 = peg$FAILED;
  3148. }
  3149. } else {
  3150. peg$currPos = s0;
  3151. s0 = peg$FAILED;
  3152. }
  3153. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3154. return s0;
  3155. }
  3156. function peg$parsewsRestrictedMessage() {
  3157. var s0;
  3158. var key = peg$currPos * 66 + 57,
  3159. cached = peg$resultsCache[key];
  3160. if (cached) {
  3161. peg$currPos = cached.nextPos;
  3162. return cached.result;
  3163. }
  3164. s0 = peg$parsewsUnaryMessage();
  3165. if (s0 === peg$FAILED) {
  3166. s0 = peg$parsewsKeyValueMessage();
  3167. }
  3168. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3169. return s0;
  3170. }
  3171. function peg$parsestx() {
  3172. var s0, s1, s2, s3, s4, s5, s6, s7, s8;
  3173. var key = peg$currPos * 66 + 58,
  3174. cached = peg$resultsCache[key];
  3175. if (cached) {
  3176. peg$currPos = cached.nextPos;
  3177. return cached.result;
  3178. }
  3179. s0 = peg$currPos;
  3180. if (input.charCodeAt(peg$currPos) === 60) {
  3181. s1 = peg$c115;
  3182. peg$currPos++;
  3183. } else {
  3184. s1 = peg$FAILED;
  3185. if (peg$silentFails === 0) { peg$fail(peg$c116); }
  3186. }
  3187. if (s1 !== peg$FAILED) {
  3188. s2 = peg$parsewsOperand();
  3189. if (s2 !== peg$FAILED) {
  3190. s3 = [];
  3191. s4 = peg$parsewsRestrictedMessage();
  3192. while (s4 !== peg$FAILED) {
  3193. s3.push(s4);
  3194. s4 = peg$parsewsRestrictedMessage();
  3195. }
  3196. if (s3 !== peg$FAILED) {
  3197. s4 = peg$currPos;
  3198. s5 = peg$parsews();
  3199. if (s5 !== peg$FAILED) {
  3200. if (input.charCodeAt(peg$currPos) === 124) {
  3201. s6 = peg$c87;
  3202. peg$currPos++;
  3203. } else {
  3204. s6 = peg$FAILED;
  3205. if (peg$silentFails === 0) { peg$fail(peg$c88); }
  3206. }
  3207. if (s6 !== peg$FAILED) {
  3208. s7 = [];
  3209. s8 = peg$parsewsOperand();
  3210. while (s8 !== peg$FAILED) {
  3211. s7.push(s8);
  3212. s8 = peg$parsewsOperand();
  3213. }
  3214. if (s7 !== peg$FAILED) {
  3215. peg$savedPos = s4;
  3216. s5 = peg$c117(s2, s3, s7);
  3217. s4 = s5;
  3218. } else {
  3219. peg$currPos = s4;
  3220. s4 = peg$FAILED;
  3221. }
  3222. } else {
  3223. peg$currPos = s4;
  3224. s4 = peg$FAILED;
  3225. }
  3226. } else {
  3227. peg$currPos = s4;
  3228. s4 = peg$FAILED;
  3229. }
  3230. if (s4 === peg$FAILED) {
  3231. s4 = null;
  3232. }
  3233. if (s4 !== peg$FAILED) {
  3234. s5 = peg$parsews();
  3235. if (s5 !== peg$FAILED) {
  3236. if (input.charCodeAt(peg$currPos) === 62) {
  3237. s6 = peg$c118;
  3238. peg$currPos++;
  3239. } else {
  3240. s6 = peg$FAILED;
  3241. if (peg$silentFails === 0) { peg$fail(peg$c119); }
  3242. }
  3243. if (s6 !== peg$FAILED) {
  3244. peg$savedPos = s0;
  3245. s1 = peg$c120(s2, s3, s4);
  3246. s0 = s1;
  3247. } else {
  3248. peg$currPos = s0;
  3249. s0 = peg$FAILED;
  3250. }
  3251. } else {
  3252. peg$currPos = s0;
  3253. s0 = peg$FAILED;
  3254. }
  3255. } else {
  3256. peg$currPos = s0;
  3257. s0 = peg$FAILED;
  3258. }
  3259. } else {
  3260. peg$currPos = s0;
  3261. s0 = peg$FAILED;
  3262. }
  3263. } else {
  3264. peg$currPos = s0;
  3265. s0 = peg$FAILED;
  3266. }
  3267. } else {
  3268. peg$currPos = s0;
  3269. s0 = peg$FAILED;
  3270. }
  3271. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3272. return s0;
  3273. }
  3274. function peg$parsejsStatement() {
  3275. var s0;
  3276. var key = peg$currPos * 66 + 59,
  3277. cached = peg$resultsCache[key];
  3278. if (cached) {
  3279. peg$currPos = cached.nextPos;
  3280. return cached.result;
  3281. }
  3282. s0 = peg$parsepragmaJsStatement();
  3283. if (s0 === peg$FAILED) {
  3284. s0 = peg$parselegacyJsStatement();
  3285. }
  3286. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3287. return s0;
  3288. }
  3289. function peg$parselegacyJsStatement() {
  3290. var s0, s1, s2, s3, s4;
  3291. var key = peg$currPos * 66 + 60,
  3292. cached = peg$resultsCache[key];
  3293. if (cached) {
  3294. peg$currPos = cached.nextPos;
  3295. return cached.result;
  3296. }
  3297. s0 = peg$currPos;
  3298. if (input.charCodeAt(peg$currPos) === 60) {
  3299. s1 = peg$c115;
  3300. peg$currPos++;
  3301. } else {
  3302. s1 = peg$FAILED;
  3303. if (peg$silentFails === 0) { peg$fail(peg$c116); }
  3304. }
  3305. if (s1 !== peg$FAILED) {
  3306. s2 = [];
  3307. s3 = peg$currPos;
  3308. if (input.substr(peg$currPos, 2) === peg$c121) {
  3309. s4 = peg$c121;
  3310. peg$currPos += 2;
  3311. } else {
  3312. s4 = peg$FAILED;
  3313. if (peg$silentFails === 0) { peg$fail(peg$c122); }
  3314. }
  3315. if (s4 !== peg$FAILED) {
  3316. peg$savedPos = s3;
  3317. s4 = peg$c123();
  3318. }
  3319. s3 = s4;
  3320. if (s3 === peg$FAILED) {
  3321. if (peg$c124.test(input.charAt(peg$currPos))) {
  3322. s3 = input.charAt(peg$currPos);
  3323. peg$currPos++;
  3324. } else {
  3325. s3 = peg$FAILED;
  3326. if (peg$silentFails === 0) { peg$fail(peg$c125); }
  3327. }
  3328. }
  3329. while (s3 !== peg$FAILED) {
  3330. s2.push(s3);
  3331. s3 = peg$currPos;
  3332. if (input.substr(peg$currPos, 2) === peg$c121) {
  3333. s4 = peg$c121;
  3334. peg$currPos += 2;
  3335. } else {
  3336. s4 = peg$FAILED;
  3337. if (peg$silentFails === 0) { peg$fail(peg$c122); }
  3338. }
  3339. if (s4 !== peg$FAILED) {
  3340. peg$savedPos = s3;
  3341. s4 = peg$c123();
  3342. }
  3343. s3 = s4;
  3344. if (s3 === peg$FAILED) {
  3345. if (peg$c124.test(input.charAt(peg$currPos))) {
  3346. s3 = input.charAt(peg$currPos);
  3347. peg$currPos++;
  3348. } else {
  3349. s3 = peg$FAILED;
  3350. if (peg$silentFails === 0) { peg$fail(peg$c125); }
  3351. }
  3352. }
  3353. }
  3354. if (s2 !== peg$FAILED) {
  3355. if (input.charCodeAt(peg$currPos) === 62) {
  3356. s3 = peg$c118;
  3357. peg$currPos++;
  3358. } else {
  3359. s3 = peg$FAILED;
  3360. if (peg$silentFails === 0) { peg$fail(peg$c119); }
  3361. }
  3362. if (s3 !== peg$FAILED) {
  3363. peg$savedPos = peg$currPos;
  3364. s4 = peg$c126(s2);
  3365. if (s4) {
  3366. s4 = void 0;
  3367. } else {
  3368. s4 = peg$FAILED;
  3369. }
  3370. if (s4 !== peg$FAILED) {
  3371. peg$savedPos = s0;
  3372. s1 = peg$c127(s2);
  3373. s0 = s1;
  3374. } else {
  3375. peg$currPos = s0;
  3376. s0 = peg$FAILED;
  3377. }
  3378. } else {
  3379. peg$currPos = s0;
  3380. s0 = peg$FAILED;
  3381. }
  3382. } else {
  3383. peg$currPos = s0;
  3384. s0 = peg$FAILED;
  3385. }
  3386. } else {
  3387. peg$currPos = s0;
  3388. s0 = peg$FAILED;
  3389. }
  3390. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3391. return s0;
  3392. }
  3393. function peg$parsepragmaJsStatement() {
  3394. var s0, s1, s2, s3, s4, s5, s6, s7;
  3395. var key = peg$currPos * 66 + 61,
  3396. cached = peg$resultsCache[key];
  3397. if (cached) {
  3398. peg$currPos = cached.nextPos;
  3399. return cached.result;
  3400. }
  3401. s0 = peg$currPos;
  3402. if (input.charCodeAt(peg$currPos) === 60) {
  3403. s1 = peg$c115;
  3404. peg$currPos++;
  3405. } else {
  3406. s1 = peg$FAILED;
  3407. if (peg$silentFails === 0) { peg$fail(peg$c116); }
  3408. }
  3409. if (s1 !== peg$FAILED) {
  3410. s2 = peg$parsews();
  3411. if (s2 !== peg$FAILED) {
  3412. if (input.substr(peg$currPos, 9) === peg$c128) {
  3413. s3 = peg$c128;
  3414. peg$currPos += 9;
  3415. } else {
  3416. s3 = peg$FAILED;
  3417. if (peg$silentFails === 0) { peg$fail(peg$c129); }
  3418. }
  3419. if (s3 !== peg$FAILED) {
  3420. s4 = peg$parsews();
  3421. if (s4 !== peg$FAILED) {
  3422. s5 = peg$parserawString();
  3423. if (s5 !== peg$FAILED) {
  3424. s6 = peg$parsews();
  3425. if (s6 !== peg$FAILED) {
  3426. if (input.charCodeAt(peg$currPos) === 62) {
  3427. s7 = peg$c118;
  3428. peg$currPos++;
  3429. } else {
  3430. s7 = peg$FAILED;
  3431. if (peg$silentFails === 0) { peg$fail(peg$c119); }
  3432. }
  3433. if (s7 !== peg$FAILED) {
  3434. peg$savedPos = s0;
  3435. s1 = peg$c130(s5);
  3436. s0 = s1;
  3437. } else {
  3438. peg$currPos = s0;
  3439. s0 = peg$FAILED;
  3440. }
  3441. } else {
  3442. peg$currPos = s0;
  3443. s0 = peg$FAILED;
  3444. }
  3445. } else {
  3446. peg$currPos = s0;
  3447. s0 = peg$FAILED;
  3448. }
  3449. } else {
  3450. peg$currPos = s0;
  3451. s0 = peg$FAILED;
  3452. }
  3453. } else {
  3454. peg$currPos = s0;
  3455. s0 = peg$FAILED;
  3456. }
  3457. } else {
  3458. peg$currPos = s0;
  3459. s0 = peg$FAILED;
  3460. }
  3461. } else {
  3462. peg$currPos = s0;
  3463. s0 = peg$FAILED;
  3464. }
  3465. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3466. return s0;
  3467. }
  3468. function peg$parsemethod() {
  3469. var s0, s1, s2;
  3470. var key = peg$currPos * 66 + 62,
  3471. cached = peg$resultsCache[key];
  3472. if (cached) {
  3473. peg$currPos = cached.nextPos;
  3474. return cached.result;
  3475. }
  3476. s0 = peg$currPos;
  3477. s1 = peg$parsewsKeywordPattern();
  3478. if (s1 === peg$FAILED) {
  3479. s1 = peg$parsewsBinaryPattern();
  3480. if (s1 === peg$FAILED) {
  3481. s1 = peg$parsewsUnaryPattern();
  3482. }
  3483. }
  3484. if (s1 !== peg$FAILED) {
  3485. s2 = peg$parsewsSequenceWs();
  3486. if (s2 !== peg$FAILED) {
  3487. peg$savedPos = s0;
  3488. s1 = peg$c131(s1, s2);
  3489. s0 = s1;
  3490. } else {
  3491. peg$currPos = s0;
  3492. s0 = peg$FAILED;
  3493. }
  3494. } else {
  3495. peg$currPos = s0;
  3496. s0 = peg$FAILED;
  3497. }
  3498. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3499. return s0;
  3500. }
  3501. function peg$parseassociationSend() {
  3502. var s0, s1, s2;
  3503. var key = peg$currPos * 66 + 63,
  3504. cached = peg$resultsCache[key];
  3505. if (cached) {
  3506. peg$currPos = cached.nextPos;
  3507. return cached.result;
  3508. }
  3509. s0 = peg$currPos;
  3510. s1 = peg$parsebinarySend();
  3511. if (s1 !== peg$FAILED) {
  3512. peg$savedPos = peg$currPos;
  3513. s2 = peg$c132(s1);
  3514. if (s2) {
  3515. s2 = void 0;
  3516. } else {
  3517. s2 = peg$FAILED;
  3518. }
  3519. if (s2 !== peg$FAILED) {
  3520. peg$savedPos = s0;
  3521. s1 = peg$c133(s1);
  3522. s0 = s1;
  3523. } else {
  3524. peg$currPos = s0;
  3525. s0 = peg$FAILED;
  3526. }
  3527. } else {
  3528. peg$currPos = s0;
  3529. s0 = peg$FAILED;
  3530. }
  3531. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3532. return s0;
  3533. }
  3534. function peg$parsewsAssociationsRest() {
  3535. var s0, s1, s2, s3, s4;
  3536. var key = peg$currPos * 66 + 64,
  3537. cached = peg$resultsCache[key];
  3538. if (cached) {
  3539. peg$currPos = cached.nextPos;
  3540. return cached.result;
  3541. }
  3542. s0 = peg$currPos;
  3543. s1 = peg$parsews();
  3544. if (s1 !== peg$FAILED) {
  3545. if (input.charCodeAt(peg$currPos) === 46) {
  3546. s2 = peg$c6;
  3547. peg$currPos++;
  3548. } else {
  3549. s2 = peg$FAILED;
  3550. if (peg$silentFails === 0) { peg$fail(peg$c7); }
  3551. }
  3552. if (s2 !== peg$FAILED) {
  3553. s3 = peg$parsemaybeDotsWs();
  3554. if (s3 !== peg$FAILED) {
  3555. s4 = peg$parseassociationSend();
  3556. if (s4 !== peg$FAILED) {
  3557. peg$savedPos = s0;
  3558. s1 = peg$c79(s4);
  3559. s0 = s1;
  3560. } else {
  3561. peg$currPos = s0;
  3562. s0 = peg$FAILED;
  3563. }
  3564. } else {
  3565. peg$currPos = s0;
  3566. s0 = peg$FAILED;
  3567. }
  3568. } else {
  3569. peg$currPos = s0;
  3570. s0 = peg$FAILED;
  3571. }
  3572. } else {
  3573. peg$currPos = s0;
  3574. s0 = peg$FAILED;
  3575. }
  3576. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3577. return s0;
  3578. }
  3579. function peg$parsewsAssociations() {
  3580. var s0, s1, s2, s3, s4;
  3581. var key = peg$currPos * 66 + 65,
  3582. cached = peg$resultsCache[key];
  3583. if (cached) {
  3584. peg$currPos = cached.nextPos;
  3585. return cached.result;
  3586. }
  3587. s0 = peg$currPos;
  3588. s1 = peg$parsemaybeDotsWs();
  3589. if (s1 !== peg$FAILED) {
  3590. s2 = peg$parseassociationSend();
  3591. if (s2 !== peg$FAILED) {
  3592. s3 = [];
  3593. s4 = peg$parsewsAssociationsRest();
  3594. while (s4 !== peg$FAILED) {
  3595. s3.push(s4);
  3596. s4 = peg$parsewsAssociationsRest();
  3597. }
  3598. if (s3 !== peg$FAILED) {
  3599. peg$savedPos = s0;
  3600. s1 = peg$c134(s2, s3);
  3601. s0 = s1;
  3602. } else {
  3603. peg$currPos = s0;
  3604. s0 = peg$FAILED;
  3605. }
  3606. } else {
  3607. peg$currPos = s0;
  3608. s0 = peg$FAILED;
  3609. }
  3610. } else {
  3611. peg$currPos = s0;
  3612. s0 = peg$FAILED;
  3613. }
  3614. peg$resultsCache[key] = { nextPos: peg$currPos, result: s0 };
  3615. return s0;
  3616. }
  3617. peg$result = peg$startRuleFunction();
  3618. if (peg$result !== peg$FAILED && peg$currPos === input.length) {
  3619. return peg$result;
  3620. } else {
  3621. if (peg$result !== peg$FAILED && peg$currPos < input.length) {
  3622. peg$fail({ type: "end", description: "end of input" });
  3623. }
  3624. throw peg$buildException(
  3625. null,
  3626. peg$maxFailExpected,
  3627. peg$maxFailPos < input.length ? input.charAt(peg$maxFailPos) : null,
  3628. peg$maxFailPos < input.length
  3629. ? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1)
  3630. : peg$computeLocation(peg$maxFailPos, peg$maxFailPos)
  3631. );
  3632. }
  3633. }
  3634. return {
  3635. SyntaxError: peg$SyntaxError,
  3636. parse: peg$parse
  3637. };
  3638. })();
  3639. });