parser.js 107 KB

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