| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559 | define("amber_core/Compiler-Inlining", ["amber/boot", "amber_core/Compiler-IR", "amber_core/Kernel-Objects", "amber_core/Compiler-Core", "amber_core/Compiler-Semantic"], function($boot){"use strict";var $core=$boot.api,nil=$boot.nil,$recv=$boot.asReceiver,$globals=$boot.globals;$core.addPackage('Compiler-Inlining');$core.packages["Compiler-Inlining"].innerEval = function (expr) { return eval(expr); };$core.packages["Compiler-Inlining"].transport = {"type":"amd","amdNamespace":"amber_core"};$core.addClass('IRInlinedAssignment', $globals.IRAssignment, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedAssignment.comment="I represent an inlined assignment instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv(aVisitor)._visitIRInlinedAssignment_(self);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedAssignment)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09^ aVisitor visitIRInlinedAssignment: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedAssignment:"]}),$globals.IRInlinedAssignment);$core.addMethod($core.method({selector: "isInlined",protocol: 'testing',fn: function (){var self=this;return true;},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "isInlined\x0a\x09^ true",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedAssignment);$core.addClass('IRInlinedClosure', $globals.IRClosure, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedClosure.comment="I represent an inlined closure instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitIRInlinedClosure_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedClosure)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitIRInlinedClosure: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedClosure:"]}),$globals.IRInlinedClosure);$core.addMethod($core.method({selector: "isInlined",protocol: 'testing',fn: function (){var self=this;return true;},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "isInlined\x0a\x09^ true",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedClosure);$core.addClass('IRInlinedReturn', $globals.IRReturn, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedReturn.comment="I represent an inlined local return instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv(aVisitor)._visitIRInlinedReturn_(self);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedReturn)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09^ aVisitor visitIRInlinedReturn: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedReturn:"]}),$globals.IRInlinedReturn);$core.addMethod($core.method({selector: "isInlined",protocol: 'testing',fn: function (){var self=this;return true;},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "isInlined\x0a\x09^ true",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedReturn);$core.addClass('IRInlinedSend', $globals.IRSend, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedSend.comment="I am the abstract super class of inlined message send instructions.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitInlinedSend_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedSend)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitInlinedSend: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitInlinedSend:"]}),$globals.IRInlinedSend);$core.addMethod($core.method({selector: "internalVariables",protocol: 'accessing',fn: function (){var self=this;return [];},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "internalVariables\x0a\x09\x22Answer a collection of internal variables required \x0a\x09to perform the inlining\x22\x0a\x09\x0a\x09^ #()",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedSend);$core.addMethod($core.method({selector: "isInlined",protocol: 'testing',fn: function (){var self=this;return true;},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "isInlined\x0a\x09^ true",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedSend);$core.addClass('IRInlinedIfFalse', $globals.IRInlinedSend, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedIfFalse.comment="I represent an inlined `#ifFalse:` message send instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitIRInlinedIfFalse_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedIfFalse)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitIRInlinedIfFalse: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedIfFalse:"]}),$globals.IRInlinedIfFalse);$core.addClass('IRInlinedIfNilIfNotNil', $globals.IRInlinedSend, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedIfNilIfNotNil.comment="I represent an inlined `#ifNil:ifNotNil:` message send instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitIRInlinedIfNilIfNotNil_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedIfNilIfNotNil)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitIRInlinedIfNilIfNotNil: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedIfNilIfNotNil:"]}),$globals.IRInlinedIfNilIfNotNil);$core.addMethod($core.method({selector: "internalVariables",protocol: 'accessing',fn: function (){var self=this;function $Array(){return $globals.Array||(typeof Array=="undefined"?nil:Array)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($Array())._with_(self._receiverInternalVariable());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"internalVariables",{},$globals.IRInlinedIfNilIfNotNil)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "internalVariables\x0a\x09^ Array with: self receiverInternalVariable",referencedClasses: ["Array"],//>>excludeEnd("ide");messageSends: ["with:", "receiverInternalVariable"]}),$globals.IRInlinedIfNilIfNotNil);$core.addMethod($core.method({selector: "receiverInternalVariable",protocol: 'accessing',fn: function (){var self=this;function $IRVariable(){return $globals.IRVariable||(typeof IRVariable=="undefined"?nil:IRVariable)}function $AliasVar(){return $globals.AliasVar||(typeof AliasVar=="undefined"?nil:AliasVar)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=$recv($IRVariable())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["new"]=1;//>>excludeEnd("ctx");$recv($1)._variable_($recv($recv($AliasVar())._new())._name_(self._receiverInternalVariableName()));return $recv($1)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"receiverInternalVariable",{},$globals.IRInlinedIfNilIfNotNil)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "receiverInternalVariable\x0a\x09^ IRVariable new\x0a\x09\x09variable: (AliasVar new name: self receiverInternalVariableName);\x0a\x09\x09yourself.",referencedClasses: ["IRVariable", "AliasVar"],//>>excludeEnd("ide");messageSends: ["variable:", "new", "name:", "receiverInternalVariableName", "yourself"]}),$globals.IRInlinedIfNilIfNotNil);$core.addMethod($core.method({selector: "receiverInternalVariableName",protocol: 'accessing',fn: function (){var self=this;return "$receiver";},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "receiverInternalVariableName\x0a\x09^ '$receiver'",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedIfNilIfNotNil);$core.addClass('IRInlinedIfTrue', $globals.IRInlinedSend, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedIfTrue.comment="I represent an inlined `#ifTrue:` message send instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitIRInlinedIfTrue_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedIfTrue)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitIRInlinedIfTrue: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedIfTrue:"]}),$globals.IRInlinedIfTrue);$core.addClass('IRInlinedIfTrueIfFalse', $globals.IRInlinedSend, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedIfTrueIfFalse.comment="I represent an inlined `#ifTrue:ifFalse:` message send instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitIRInlinedIfTrueIfFalse_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedIfTrueIfFalse)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitIRInlinedIfTrueIfFalse: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedIfTrueIfFalse:"]}),$globals.IRInlinedIfTrueIfFalse);$core.addClass('IRInlinedSequence', $globals.IRBlockSequence, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInlinedSequence.comment="I represent a (block) sequence inside an inlined closure instruction (instance of `IRInlinedClosure`).";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "accept:",protocol: 'visiting',fn: function (aVisitor){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(aVisitor)._visitIRInlinedSequence_(self);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"accept:",{aVisitor:aVisitor},$globals.IRInlinedSequence)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aVisitor"],source: "accept: aVisitor\x0a\x09aVisitor visitIRInlinedSequence: self",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visitIRInlinedSequence:"]}),$globals.IRInlinedSequence);$core.addMethod($core.method({selector: "isInlined",protocol: 'testing',fn: function (){var self=this;return true;},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "isInlined\x0a\x09^ true",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRInlinedSequence);$core.addClass('IRInliner', $globals.IRVisitor, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInliner.comment="I visit an IR tree, inlining message sends and block closures.\x0a\x0aMessage selectors that can be inlined are answered by `IRSendInliner >> #inlinedSelectors`";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "assignmentInliner",protocol: 'factory',fn: function (){var self=this;function $IRAssignmentInliner(){return $globals.IRAssignmentInliner||(typeof IRAssignmentInliner=="undefined"?nil:IRAssignmentInliner)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=$recv($IRAssignmentInliner())._new();$recv($1)._translator_(self);return $recv($1)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"assignmentInliner",{},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "assignmentInliner\x0a\x09^ IRAssignmentInliner new\x0a\x09\x09translator: self;\x0a\x09\x09yourself",referencedClasses: ["IRAssignmentInliner"],//>>excludeEnd("ide");messageSends: ["translator:", "new", "yourself"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "returnInliner",protocol: 'factory',fn: function (){var self=this;function $IRReturnInliner(){return $globals.IRReturnInliner||(typeof IRReturnInliner=="undefined"?nil:IRReturnInliner)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=$recv($IRReturnInliner())._new();$recv($1)._translator_(self);return $recv($1)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"returnInliner",{},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "returnInliner\x0a\x09^ IRReturnInliner new\x0a\x09\x09translator: self;\x0a\x09\x09yourself",referencedClasses: ["IRReturnInliner"],//>>excludeEnd("ide");messageSends: ["translator:", "new", "yourself"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "sendInliner",protocol: 'factory',fn: function (){var self=this;function $IRSendInliner(){return $globals.IRSendInliner||(typeof IRSendInliner=="undefined"?nil:IRSendInliner)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=$recv($IRSendInliner())._new();$recv($1)._translator_(self);return $recv($1)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"sendInliner",{},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "sendInliner\x0a\x09^ IRSendInliner new\x0a\x09\x09translator: self;\x0a\x09\x09yourself",referencedClasses: ["IRSendInliner"],//>>excludeEnd("ide");messageSends: ["translator:", "new", "yourself"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "shouldInlineAssignment:",protocol: 'testing',fn: function (anIRAssignment){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $4,$3,$2,$1;$1=$recv($recv($recv(anIRAssignment)._isInlined())._not())._and_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$4=$recv(anIRAssignment)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$3=$recv($4)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=1;//>>excludeEnd("ctx");$2=$recv($3)._isSend();return $recv($2)._and_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx3) {//>>excludeEnd("ctx");return self._shouldInlineSend_($recv($recv(anIRAssignment)._instructions())._last());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["and:"]=1;//>>excludeEnd("ctx");return $1;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"shouldInlineAssignment:",{anIRAssignment:anIRAssignment},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRAssignment"],source: "shouldInlineAssignment: anIRAssignment\x0a\x09^ anIRAssignment isInlined not and: [\x0a\x09\x09anIRAssignment instructions last isSend and: [\x0a\x09\x09\x09self shouldInlineSend: (anIRAssignment instructions last) ]]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["and:", "not", "isInlined", "isSend", "last", "instructions", "shouldInlineSend:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "shouldInlineReturn:",protocol: 'testing',fn: function (anIRReturn){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $4,$3,$2,$1;$1=$recv($recv($recv(anIRReturn)._isInlined())._not())._and_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$4=$recv(anIRReturn)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$3=$recv($4)._first();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["first"]=1;//>>excludeEnd("ctx");$2=$recv($3)._isSend();return $recv($2)._and_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx3) {//>>excludeEnd("ctx");return self._shouldInlineSend_($recv($recv(anIRReturn)._instructions())._first());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["and:"]=1;//>>excludeEnd("ctx");return $1;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"shouldInlineReturn:",{anIRReturn:anIRReturn},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRReturn"],source: "shouldInlineReturn: anIRReturn\x0a\x09^ anIRReturn isInlined not and: [\x0a\x09\x09anIRReturn instructions first isSend and: [\x0a\x09\x09\x09self shouldInlineSend: (anIRReturn instructions first) ]]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["and:", "not", "isInlined", "isSend", "first", "instructions", "shouldInlineSend:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "shouldInlineSend:",protocol: 'testing',fn: function (anIRSend){var self=this;function $IRSendInliner(){return $globals.IRSendInliner||(typeof IRSendInliner=="undefined"?nil:IRSendInliner)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($recv($recv(anIRSend)._isInlined())._not())._and_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv($IRSendInliner())._shouldInline_(anIRSend);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"shouldInlineSend:",{anIRSend:anIRSend},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRSend"],source: "shouldInlineSend: anIRSend\x0a\x09^ anIRSend isInlined not and: [\x0a\x09\x09IRSendInliner shouldInline: anIRSend ]",referencedClasses: ["IRSendInliner"],//>>excludeEnd("ide");messageSends: ["and:", "not", "isInlined", "shouldInline:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "transformNonLocalReturn:",protocol: 'visiting',fn: function (anIRNonLocalReturn){var self=this;var localReturn;function $IRReturn(){return $globals.IRReturn||(typeof IRReturn=="undefined"?nil:IRReturn)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $2,$1,$4,$3,$5,$6,$7;$2=$recv(anIRNonLocalReturn)._scope();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["scope"]=1;//>>excludeEnd("ctx");$1=$recv($2)._canInlineNonLocalReturns();if($core.assert($1)){$4=$recv(anIRNonLocalReturn)._scope();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["scope"]=2;//>>excludeEnd("ctx");$3=$recv($4)._methodScope();$5=$recv(anIRNonLocalReturn)._scope();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["scope"]=3;//>>excludeEnd("ctx");$recv($3)._removeNonLocalReturn_($5);$6=$recv($IRReturn())._new();$recv($6)._scope_($recv(anIRNonLocalReturn)._scope());localReturn=$recv($6)._yourself();localReturn;$recv($recv(anIRNonLocalReturn)._instructions())._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv(localReturn)._add_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});//>>excludeEnd("ctx");}));$recv(anIRNonLocalReturn)._replaceWith_(localReturn);return localReturn;};$7=(//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = true, //>>excludeEnd("ctx");$globals.IRInliner.superclass.fn.prototype._visitIRNonLocalReturn_.apply($recv(self), [anIRNonLocalReturn]));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = false;//>>excludeEnd("ctx");;return $7;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"transformNonLocalReturn:",{anIRNonLocalReturn:anIRNonLocalReturn,localReturn:localReturn},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRNonLocalReturn"],source: "transformNonLocalReturn: anIRNonLocalReturn\x0a\x09\x22Replace a non local return into a local return\x22\x0a\x0a\x09| localReturn |\x0a\x09anIRNonLocalReturn scope canInlineNonLocalReturns ifTrue: [\x0a\x09\x09anIRNonLocalReturn scope methodScope removeNonLocalReturn: anIRNonLocalReturn scope.\x0a\x09\x09localReturn := IRReturn new\x0a\x09\x09\x09scope: anIRNonLocalReturn scope;\x0a\x09\x09\x09yourself.\x0a\x09\x09anIRNonLocalReturn instructions do: [ :each |\x0a\x09\x09\x09localReturn add: each ].\x0a\x09\x09anIRNonLocalReturn replaceWith: localReturn.\x0a\x09\x09^ localReturn ].\x0a\x09^ super visitIRNonLocalReturn: anIRNonLocalReturn",referencedClasses: ["IRReturn"],//>>excludeEnd("ide");messageSends: ["ifTrue:", "canInlineNonLocalReturns", "scope", "removeNonLocalReturn:", "methodScope", "scope:", "new", "yourself", "do:", "instructions", "add:", "replaceWith:", "visitIRNonLocalReturn:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "visitIRAssignment:",protocol: 'visiting',fn: function (anIRAssignment){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=self._shouldInlineAssignment_(anIRAssignment);if($core.assert($1)){return $recv(self._assignmentInliner())._inlineAssignment_(anIRAssignment);} else {return (//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = true, //>>excludeEnd("ctx");$globals.IRInliner.superclass.fn.prototype._visitIRAssignment_.apply($recv(self), [anIRAssignment]));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = false;//>>excludeEnd("ctx");;};//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRAssignment:",{anIRAssignment:anIRAssignment},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRAssignment"],source: "visitIRAssignment: anIRAssignment\x0a\x09^ (self shouldInlineAssignment: anIRAssignment)\x0a\x09\x09ifTrue: [ self assignmentInliner inlineAssignment: anIRAssignment ]\x0a\x09\x09ifFalse: [ super visitIRAssignment: anIRAssignment ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["ifTrue:ifFalse:", "shouldInlineAssignment:", "inlineAssignment:", "assignmentInliner", "visitIRAssignment:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "visitIRNonLocalReturn:",protocol: 'visiting',fn: function (anIRNonLocalReturn){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._transformNonLocalReturn_(anIRNonLocalReturn);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRNonLocalReturn:",{anIRNonLocalReturn:anIRNonLocalReturn},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRNonLocalReturn"],source: "visitIRNonLocalReturn: anIRNonLocalReturn\x0a\x09^ self transformNonLocalReturn: anIRNonLocalReturn",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["transformNonLocalReturn:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "visitIRReturn:",protocol: 'visiting',fn: function (anIRReturn){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=self._shouldInlineReturn_(anIRReturn);if($core.assert($1)){return $recv(self._returnInliner())._inlineReturn_(anIRReturn);} else {return (//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = true, //>>excludeEnd("ctx");$globals.IRInliner.superclass.fn.prototype._visitIRReturn_.apply($recv(self), [anIRReturn]));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = false;//>>excludeEnd("ctx");;};//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRReturn:",{anIRReturn:anIRReturn},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRReturn"],source: "visitIRReturn: anIRReturn\x0a\x09^ (self shouldInlineReturn: anIRReturn)\x0a\x09\x09ifTrue: [ self returnInliner inlineReturn: anIRReturn ]\x0a\x09\x09ifFalse: [ super visitIRReturn: anIRReturn ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["ifTrue:ifFalse:", "shouldInlineReturn:", "inlineReturn:", "returnInliner", "visitIRReturn:"]}),$globals.IRInliner);$core.addMethod($core.method({selector: "visitIRSend:",protocol: 'visiting',fn: function (anIRSend){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=self._shouldInlineSend_(anIRSend);if($core.assert($1)){return $recv(self._sendInliner())._inlineSend_(anIRSend);} else {return (//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = true, //>>excludeEnd("ctx");$globals.IRInliner.superclass.fn.prototype._visitIRSend_.apply($recv(self), [anIRSend]));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = false;//>>excludeEnd("ctx");;};//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRSend:",{anIRSend:anIRSend},$globals.IRInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRSend"],source: "visitIRSend: anIRSend\x0a\x09^ (self shouldInlineSend: anIRSend)\x0a\x09\x09ifTrue: [ self sendInliner inlineSend: anIRSend ]\x0a\x09\x09ifFalse: [ super visitIRSend: anIRSend ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["ifTrue:ifFalse:", "shouldInlineSend:", "inlineSend:", "sendInliner", "visitIRSend:"]}),$globals.IRInliner);$core.addClass('IRInliningJSTranslator', $globals.IRJSTranslator, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRInliningJSTranslator.comment="I am a specialized JavaScript translator able to write inlined IR instructions to JavaScript stream (`JSStream` instance).";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "visitIRInlinedAssignment:",protocol: 'visiting',fn: function (anIRInlinedAssignment){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");self._visit_($recv($recv(anIRInlinedAssignment)._instructions())._last());return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedAssignment:",{anIRInlinedAssignment:anIRInlinedAssignment},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedAssignment"],source: "visitIRInlinedAssignment: anIRInlinedAssignment\x0a\x09self visit: anIRInlinedAssignment instructions last",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visit:", "last", "instructions"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedClosure:",protocol: 'visiting',fn: function (anIRInlinedClosure){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv(self._stream())._nextPutVars_($recv($recv(anIRInlinedClosure)._tempDeclarations())._collect_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv($recv(each)._name())._asVariableName();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});//>>excludeEnd("ctx");})));$recv($recv(anIRInlinedClosure)._instructions())._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return self._visit_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});//>>excludeEnd("ctx");}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedClosure:",{anIRInlinedClosure:anIRInlinedClosure},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedClosure"],source: "visitIRInlinedClosure: anIRInlinedClosure\x0a\x09self stream nextPutVars: (anIRInlinedClosure tempDeclarations collect: [ :each |\x0a\x09\x09each name asVariableName ]).\x0a\x09anIRInlinedClosure instructions do: [ :each |\x0a\x09\x09self visit: each ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["nextPutVars:", "stream", "collect:", "tempDeclarations", "asVariableName", "name", "do:", "instructions", "visit:"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedIfFalse:",protocol: 'visiting',fn: function (anIRInlinedIfFalse){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$4,$3;$1=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["stream"]=1;//>>excludeEnd("ctx");$recv($1)._nextPutIf_with_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$2=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["stream"]=2;//>>excludeEnd("ctx");$recv($2)._nextPutAll_("!$core.assert(");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["nextPutAll:"]=1;//>>excludeEnd("ctx");$4=$recv(anIRInlinedIfFalse)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$3=$recv($4)._first();self._visit_($3);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["visit:"]=1;//>>excludeEnd("ctx");return $recv(self._stream())._nextPutAll_(")");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}),(function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return self._visit_($recv($recv(anIRInlinedIfFalse)._instructions())._last());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});//>>excludeEnd("ctx");}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedIfFalse:",{anIRInlinedIfFalse:anIRInlinedIfFalse},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedIfFalse"],source: "visitIRInlinedIfFalse: anIRInlinedIfFalse\x0a\x09self stream nextPutIf: [\x0a\x09\x09self stream nextPutAll: '!$core.assert('.\x0a\x09\x09self visit: anIRInlinedIfFalse instructions first.\x0a\x09\x09self stream nextPutAll: ')' ]\x0a\x09\x09with: [ self visit: anIRInlinedIfFalse instructions last ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["nextPutIf:with:", "stream", "nextPutAll:", "visit:", "first", "instructions", "last"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedIfNilIfNotNil:",protocol: 'visiting',fn: function (anIRInlinedIfNilIfNotNil){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$4,$3,$6,$5,$7,$8,$10,$9;$1=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["stream"]=1;//>>excludeEnd("ctx");$recv($1)._nextPutIfElse_with_with_((function(){var recvVarName;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");recvVarName=$recv(anIRInlinedIfNilIfNotNil)._receiverInternalVariableName();recvVarName;$2=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["stream"]=2;//>>excludeEnd("ctx");$4="(".__comma(recvVarName);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx[","]=2;//>>excludeEnd("ctx");$3=$recv($4).__comma(" = ");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx[","]=1;//>>excludeEnd("ctx");$recv($2)._nextPutAll_($3);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["nextPutAll:"]=1;//>>excludeEnd("ctx");$6=$recv(anIRInlinedIfNilIfNotNil)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$5=$recv($6)._first();self._visit_($5);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["visit:"]=1;//>>excludeEnd("ctx");$7=self._stream();$8=$recv(") == null || ".__comma(recvVarName)).__comma(".isNil");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx[","]=3;//>>excludeEnd("ctx");return $recv($7)._nextPutAll_($8);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({recvVarName:recvVarName},$ctx1,1)});//>>excludeEnd("ctx");}),(function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$10=$recv(anIRInlinedIfNilIfNotNil)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=2;//>>excludeEnd("ctx");$9=$recv($10)._second();return self._visit_($9);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["visit:"]=2;//>>excludeEnd("ctx");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});//>>excludeEnd("ctx");}),(function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return self._visit_($recv($recv(anIRInlinedIfNilIfNotNil)._instructions())._third());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)});//>>excludeEnd("ctx");}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedIfNilIfNotNil:",{anIRInlinedIfNilIfNotNil:anIRInlinedIfNilIfNotNil},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedIfNilIfNotNil"],source: "visitIRInlinedIfNilIfNotNil: anIRInlinedIfNilIfNotNil\x0a\x09self stream\x0a\x09\x09nextPutIfElse: [\x0a\x09\x09\x09| recvVarName |\x0a\x09\x09\x09recvVarName := anIRInlinedIfNilIfNotNil receiverInternalVariableName.\x0a\x09\x09\x09self stream nextPutAll: '(', recvVarName, ' = '.\x0a\x09\x09\x09self visit: anIRInlinedIfNilIfNotNil instructions first.\x0a\x09\x09\x09self stream nextPutAll: ') == null || ', recvVarName, '.isNil' ]\x0a\x09\x09with: [ self visit: anIRInlinedIfNilIfNotNil instructions second ]\x0a\x09\x09with: [ self visit: anIRInlinedIfNilIfNotNil instructions third ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["nextPutIfElse:with:with:", "stream", "receiverInternalVariableName", "nextPutAll:", ",", "visit:", "first", "instructions", "second", "third"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedIfTrue:",protocol: 'visiting',fn: function (anIRInlinedIfTrue){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$4,$3;$1=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["stream"]=1;//>>excludeEnd("ctx");$recv($1)._nextPutIf_with_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$2=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["stream"]=2;//>>excludeEnd("ctx");$recv($2)._nextPutAll_("$core.assert(");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["nextPutAll:"]=1;//>>excludeEnd("ctx");$4=$recv(anIRInlinedIfTrue)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$3=$recv($4)._first();self._visit_($3);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["visit:"]=1;//>>excludeEnd("ctx");return $recv(self._stream())._nextPutAll_(")");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}),(function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return self._visit_($recv($recv(anIRInlinedIfTrue)._instructions())._last());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});//>>excludeEnd("ctx");}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedIfTrue:",{anIRInlinedIfTrue:anIRInlinedIfTrue},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedIfTrue"],source: "visitIRInlinedIfTrue: anIRInlinedIfTrue\x0a\x09self stream nextPutIf: [\x0a\x09\x09self stream nextPutAll: '$core.assert('.\x0a\x09\x09self visit: anIRInlinedIfTrue instructions first.\x0a\x09\x09self stream nextPutAll: ')' ]\x0a\x09\x09with: [ self visit: anIRInlinedIfTrue instructions last ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["nextPutIf:with:", "stream", "nextPutAll:", "visit:", "first", "instructions", "last"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedIfTrueIfFalse:",protocol: 'visiting',fn: function (anIRInlinedIfTrueIfFalse){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$4,$3,$6,$5;$1=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["stream"]=1;//>>excludeEnd("ctx");$recv($1)._nextPutIfElse_with_with_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$2=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["stream"]=2;//>>excludeEnd("ctx");$recv($2)._nextPutAll_("$core.assert(");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["nextPutAll:"]=1;//>>excludeEnd("ctx");$4=$recv(anIRInlinedIfTrueIfFalse)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$3=$recv($4)._first();self._visit_($3);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["visit:"]=1;//>>excludeEnd("ctx");return $recv(self._stream())._nextPutAll_(")");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}),(function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$6=$recv(anIRInlinedIfTrueIfFalse)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["instructions"]=2;//>>excludeEnd("ctx");$5=$recv($6)._second();return self._visit_($5);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["visit:"]=2;//>>excludeEnd("ctx");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)});//>>excludeEnd("ctx");}),(function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return self._visit_($recv($recv(anIRInlinedIfTrueIfFalse)._instructions())._third());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)});//>>excludeEnd("ctx");}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedIfTrueIfFalse:",{anIRInlinedIfTrueIfFalse:anIRInlinedIfTrueIfFalse},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedIfTrueIfFalse"],source: "visitIRInlinedIfTrueIfFalse: anIRInlinedIfTrueIfFalse\x0a\x09self stream\x0a\x09\x09nextPutIfElse: [\x0a\x09\x09\x09self stream nextPutAll: '$core.assert('.\x0a\x09\x09\x09self visit: anIRInlinedIfTrueIfFalse instructions first.\x0a\x09\x09\x09self stream nextPutAll: ')' ]\x0a\x09\x09with: [ self visit: anIRInlinedIfTrueIfFalse instructions second ]\x0a\x09\x09with: [ self visit: anIRInlinedIfTrueIfFalse instructions third ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["nextPutIfElse:with:with:", "stream", "nextPutAll:", "visit:", "first", "instructions", "second", "third"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedNonLocalReturn:",protocol: 'visiting',fn: function (anIRInlinedReturn){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=self._stream();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["stream"]=1;//>>excludeEnd("ctx");$recv($1)._nextPutStatementWith_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return self._visit_($recv($recv(anIRInlinedReturn)._instructions())._last());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}));$recv(self._stream())._nextPutNonLocalReturnWith_((function(){}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedNonLocalReturn:",{anIRInlinedReturn:anIRInlinedReturn},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedReturn"],source: "visitIRInlinedNonLocalReturn: anIRInlinedReturn\x0a\x09self stream nextPutStatementWith: [\x0a\x09\x09self visit: anIRInlinedReturn instructions last ].\x0a\x09self stream nextPutNonLocalReturnWith: [ ]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["nextPutStatementWith:", "stream", "visit:", "last", "instructions", "nextPutNonLocalReturnWith:"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedReturn:",protocol: 'visiting',fn: function (anIRInlinedReturn){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");self._visit_($recv($recv(anIRInlinedReturn)._instructions())._last());return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedReturn:",{anIRInlinedReturn:anIRInlinedReturn},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedReturn"],source: "visitIRInlinedReturn: anIRInlinedReturn\x0a\x09self visit: anIRInlinedReturn instructions last",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visit:", "last", "instructions"]}),$globals.IRInliningJSTranslator);$core.addMethod($core.method({selector: "visitIRInlinedSequence:",protocol: 'visiting',fn: function (anIRInlinedSequence){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv($recv(anIRInlinedSequence)._instructions())._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv(self._stream())._nextPutStatementWith_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx3) {//>>excludeEnd("ctx");return self._visit_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx3) {$ctx3.fillBlock({},$ctx2,2)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});//>>excludeEnd("ctx");}));return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"visitIRInlinedSequence:",{anIRInlinedSequence:anIRInlinedSequence},$globals.IRInliningJSTranslator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInlinedSequence"],source: "visitIRInlinedSequence: anIRInlinedSequence\x0a\x09anIRInlinedSequence instructions do: [ :each |\x0a\x09\x09self stream nextPutStatementWith: [ self visit: each ]]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["do:", "instructions", "nextPutStatementWith:", "stream", "visit:"]}),$globals.IRInliningJSTranslator);$core.addClass('IRSendInliner', $globals.Object, ['send', 'translator'], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRSendInliner.comment="I inline some message sends and block closure arguments. I heavily rely on #perform: to dispatch inlining methods.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "ifFalse:",protocol: 'inlining',fn: function (anIRInstruction){var self=this;function $IRInlinedIfFalse(){return $globals.IRInlinedIfFalse||(typeof IRInlinedIfFalse=="undefined"?nil:IRInlinedIfFalse)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._inlinedSend_withBlock_($recv($IRInlinedIfFalse())._new(),anIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifFalse:",{anIRInstruction:anIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction"],source: "ifFalse: anIRInstruction\x0a\x09^ self inlinedSend: IRInlinedIfFalse new withBlock: anIRInstruction",referencedClasses: ["IRInlinedIfFalse"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:", "new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifFalse:ifTrue:",protocol: 'inlining',fn: function (anIRInstruction,anotherIRInstruction){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._perform_withArguments_("ifTrue:ifFalse:",[anotherIRInstruction,anIRInstruction]);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifFalse:ifTrue:",{anIRInstruction:anIRInstruction,anotherIRInstruction:anotherIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction", "anotherIRInstruction"],source: "ifFalse: anIRInstruction ifTrue: anotherIRInstruction\x0a\x09^ self perform: #ifTrue:ifFalse: withArguments: { anotherIRInstruction. anIRInstruction }",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["perform:withArguments:"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifNil:",protocol: 'inlining',fn: function (anIRInstruction){var self=this;function $IRInlinedIfNilIfNotNil(){return $globals.IRInlinedIfNilIfNotNil||(typeof IRInlinedIfNilIfNotNil=="undefined"?nil:IRInlinedIfNilIfNotNil)}function $IRClosure(){return $globals.IRClosure||(typeof IRClosure=="undefined"?nil:IRClosure)}function $IRBlockSequence(){return $globals.IRBlockSequence||(typeof IRBlockSequence=="undefined"?nil:IRBlockSequence)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$3,$5,$6,$4,$2;$1=$recv($IRInlinedIfNilIfNotNil())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["new"]=1;//>>excludeEnd("ctx");$3=$recv($IRClosure())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["new"]=2;//>>excludeEnd("ctx");$recv($3)._scope_($recv($recv(anIRInstruction)._scope())._copy());$5=$recv($IRBlockSequence())._new();$recv($5)._add_($recv($recv(self._send())._instructions())._first());$6=$recv($5)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["yourself"]=1;//>>excludeEnd("ctx");$4=$6;$recv($3)._add_($4);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["add:"]=1;//>>excludeEnd("ctx");$2=$recv($3)._yourself();return self._inlinedSend_withBlock_withBlock_($1,anIRInstruction,$2);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifNil:",{anIRInstruction:anIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction"],source: "ifNil: anIRInstruction\x0a\x09^ self\x0a\x09\x09inlinedSend: IRInlinedIfNilIfNotNil new\x0a\x09\x09withBlock: anIRInstruction\x0a\x09\x09withBlock: (IRClosure new\x0a\x09\x09\x09scope: anIRInstruction scope copy;\x0a\x09\x09\x09add: (IRBlockSequence new\x0a\x09\x09\x09\x09add: self send instructions first;\x0a\x09\x09\x09\x09yourself);\x0a\x09\x09\x09yourself)",referencedClasses: ["IRInlinedIfNilIfNotNil", "IRClosure", "IRBlockSequence"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:withBlock:", "new", "scope:", "copy", "scope", "add:", "first", "instructions", "send", "yourself"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifNil:ifNotNil:",protocol: 'inlining',fn: function (anIRInstruction,anotherIRInstruction){var self=this;function $IRInlinedIfNilIfNotNil(){return $globals.IRInlinedIfNilIfNotNil||(typeof IRInlinedIfNilIfNotNil=="undefined"?nil:IRInlinedIfNilIfNotNil)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._inlinedSend_withBlock_withBlock_($recv($IRInlinedIfNilIfNotNil())._new(),anIRInstruction,anotherIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifNil:ifNotNil:",{anIRInstruction:anIRInstruction,anotherIRInstruction:anotherIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction", "anotherIRInstruction"],source: "ifNil: anIRInstruction ifNotNil: anotherIRInstruction\x0a\x09^ self inlinedSend: IRInlinedIfNilIfNotNil new withBlock: anIRInstruction withBlock: anotherIRInstruction",referencedClasses: ["IRInlinedIfNilIfNotNil"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:withBlock:", "new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifNotNil:",protocol: 'inlining',fn: function (anIRInstruction){var self=this;function $IRInlinedIfNilIfNotNil(){return $globals.IRInlinedIfNilIfNotNil||(typeof IRInlinedIfNilIfNotNil=="undefined"?nil:IRInlinedIfNilIfNotNil)}function $IRClosure(){return $globals.IRClosure||(typeof IRClosure=="undefined"?nil:IRClosure)}function $IRBlockSequence(){return $globals.IRBlockSequence||(typeof IRBlockSequence=="undefined"?nil:IRBlockSequence)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$3,$5,$6,$4,$2;$1=$recv($IRInlinedIfNilIfNotNil())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["new"]=1;//>>excludeEnd("ctx");$3=$recv($IRClosure())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["new"]=2;//>>excludeEnd("ctx");$recv($3)._scope_($recv($recv(anIRInstruction)._scope())._copy());$5=$recv($IRBlockSequence())._new();$recv($5)._add_($recv($recv(self._send())._instructions())._first());$6=$recv($5)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["yourself"]=1;//>>excludeEnd("ctx");$4=$6;$recv($3)._add_($4);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["add:"]=1;//>>excludeEnd("ctx");$2=$recv($3)._yourself();return self._inlinedSend_withBlock_withBlock_($1,$2,anIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifNotNil:",{anIRInstruction:anIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction"],source: "ifNotNil: anIRInstruction\x0a\x09^ self\x0a\x09\x09inlinedSend: IRInlinedIfNilIfNotNil new\x0a\x09\x09withBlock: (IRClosure new\x0a\x09\x09\x09scope: anIRInstruction scope copy;\x0a\x09\x09\x09add: (IRBlockSequence new\x0a\x09\x09\x09\x09add: self send instructions first;\x0a\x09\x09\x09\x09yourself);\x0a\x09\x09\x09yourself)\x0a\x09\x09withBlock: anIRInstruction",referencedClasses: ["IRInlinedIfNilIfNotNil", "IRClosure", "IRBlockSequence"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:withBlock:", "new", "scope:", "copy", "scope", "add:", "first", "instructions", "send", "yourself"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifNotNil:ifNil:",protocol: 'inlining',fn: function (anIRInstruction,anotherIRInstruction){var self=this;function $IRInlinedIfNilIfNotNil(){return $globals.IRInlinedIfNilIfNotNil||(typeof IRInlinedIfNilIfNotNil=="undefined"?nil:IRInlinedIfNilIfNotNil)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._inlinedSend_withBlock_withBlock_($recv($IRInlinedIfNilIfNotNil())._new(),anotherIRInstruction,anIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifNotNil:ifNil:",{anIRInstruction:anIRInstruction,anotherIRInstruction:anotherIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction", "anotherIRInstruction"],source: "ifNotNil: anIRInstruction ifNil: anotherIRInstruction\x0a\x09^ self inlinedSend: IRInlinedIfNilIfNotNil new withBlock: anotherIRInstruction withBlock: anIRInstruction",referencedClasses: ["IRInlinedIfNilIfNotNil"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:withBlock:", "new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifTrue:",protocol: 'inlining',fn: function (anIRInstruction){var self=this;function $IRInlinedIfTrue(){return $globals.IRInlinedIfTrue||(typeof IRInlinedIfTrue=="undefined"?nil:IRInlinedIfTrue)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._inlinedSend_withBlock_($recv($IRInlinedIfTrue())._new(),anIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifTrue:",{anIRInstruction:anIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction"],source: "ifTrue: anIRInstruction\x0a\x09^ self inlinedSend: IRInlinedIfTrue new withBlock: anIRInstruction",referencedClasses: ["IRInlinedIfTrue"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:", "new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "ifTrue:ifFalse:",protocol: 'inlining',fn: function (anIRInstruction,anotherIRInstruction){var self=this;function $IRInlinedIfTrueIfFalse(){return $globals.IRInlinedIfTrueIfFalse||(typeof IRInlinedIfTrueIfFalse=="undefined"?nil:IRInlinedIfTrueIfFalse)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return self._inlinedSend_withBlock_withBlock_($recv($IRInlinedIfTrueIfFalse())._new(),anIRInstruction,anotherIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"ifTrue:ifFalse:",{anIRInstruction:anIRInstruction,anotherIRInstruction:anotherIRInstruction},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction", "anotherIRInstruction"],source: "ifTrue: anIRInstruction ifFalse: anotherIRInstruction\x0a\x09^ self inlinedSend: IRInlinedIfTrueIfFalse new withBlock: anIRInstruction withBlock: anotherIRInstruction",referencedClasses: ["IRInlinedIfTrueIfFalse"],//>>excludeEnd("ide");messageSends: ["inlinedSend:withBlock:withBlock:", "new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlineClosure:",protocol: 'inlining',fn: function (anIRClosure){var self=this;var inlinedClosure,sequence,statements;function $IRTempDeclaration(){return $globals.IRTempDeclaration||(typeof IRTempDeclaration=="undefined"?nil:IRTempDeclaration)}function $IRAssignment(){return $globals.IRAssignment||(typeof IRAssignment=="undefined"?nil:IRAssignment)}function $IRVariable(){return $globals.IRVariable||(typeof IRVariable=="undefined"?nil:IRVariable)}function $AliasVar(){return $globals.AliasVar||(typeof AliasVar=="undefined"?nil:AliasVar)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$3,$5,$6,$4,$7,$9,$11,$13,$14,$15,$12,$10,$17,$19,$20,$18,$16,$8,$22,$21,$25,$24,$26,$23,$27,$30,$29,$28;inlinedClosure=self._inlinedClosure();$1=inlinedClosure;$2=$recv(anIRClosure)._scope();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["scope"]=1;//>>excludeEnd("ctx");$recv($1)._scope_($2);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["scope:"]=1;//>>excludeEnd("ctx");$recv($1)._parent_($recv(anIRClosure)._parent());$recv($recv(anIRClosure)._tempDeclarations())._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv(inlinedClosure)._add_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=1;//>>excludeEnd("ctx");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["do:"]=1;//>>excludeEnd("ctx");sequence=self._inlinedSequence();$recv($recv(anIRClosure)._arguments())._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$3=inlinedClosure;$5=$recv($IRTempDeclaration())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["new"]=1;//>>excludeEnd("ctx");$recv($5)._name_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["name:"]=1;//>>excludeEnd("ctx");$6=$recv($5)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["yourself"]=1;//>>excludeEnd("ctx");$4=$6;$recv($3)._add_($4);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=2;//>>excludeEnd("ctx");$7=sequence;$9=$recv($IRAssignment())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["new"]=2;//>>excludeEnd("ctx");$11=$recv($IRVariable())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["new"]=3;//>>excludeEnd("ctx");$13=$recv($AliasVar())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["new"]=4;//>>excludeEnd("ctx");$14=$recv(inlinedClosure)._scope();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["scope"]=2;//>>excludeEnd("ctx");$recv($13)._scope_($14);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["scope:"]=2;//>>excludeEnd("ctx");$recv($13)._name_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["name:"]=2;//>>excludeEnd("ctx");$15=$recv($13)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["yourself"]=2;//>>excludeEnd("ctx");$12=$15;$10=$recv($11)._variable_($12);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["variable:"]=1;//>>excludeEnd("ctx");$recv($9)._add_($10);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=4;//>>excludeEnd("ctx");$17=$recv($IRVariable())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["new"]=5;//>>excludeEnd("ctx");$19=$recv($AliasVar())._new();$recv($19)._scope_($recv(inlinedClosure)._scope());$recv($19)._name_("$receiver");$20=$recv($19)._yourself();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["yourself"]=3;//>>excludeEnd("ctx");$18=$20;$16=$recv($17)._variable_($18);$recv($9)._add_($16);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=5;//>>excludeEnd("ctx");$8=$recv($9)._yourself();return $recv($7)._add_($8);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=3;//>>excludeEnd("ctx");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["do:"]=2;//>>excludeEnd("ctx");$recv(inlinedClosure)._add_(sequence);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["add:"]=6;//>>excludeEnd("ctx");$22=$recv(anIRClosure)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=2;//>>excludeEnd("ctx");$21=$recv($22)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["last"]=1;//>>excludeEnd("ctx");statements=$recv($21)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$recv(statements)._ifNotEmpty_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$recv($recv(statements)._allButLast())._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx3) {//>>excludeEnd("ctx");return $recv(sequence)._add_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx3.sendIdx["add:"]=7;//>>excludeEnd("ctx");//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx3) {$ctx3.fillBlock({each:each},$ctx2,4)});//>>excludeEnd("ctx");}));$25=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=2;//>>excludeEnd("ctx");$24=$recv($25)._isReturn();$23=$recv($24)._and_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx3) {//>>excludeEnd("ctx");$26=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx3.sendIdx["last"]=3;//>>excludeEnd("ctx");return $recv($26)._isBlockReturn();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx3) {$ctx3.fillBlock({},$ctx2,5)});//>>excludeEnd("ctx");}));if($core.assert($23)){$27=sequence;$30=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=4;//>>excludeEnd("ctx");$29=$recv($30)._instructions();$28=$recv($29)._first();return $recv($27)._add_($28);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=8;//>>excludeEnd("ctx");} else {return $recv(sequence)._add_($recv(statements)._last());};//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,3)});//>>excludeEnd("ctx");}));return inlinedClosure;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlineClosure:",{anIRClosure:anIRClosure,inlinedClosure:inlinedClosure,sequence:sequence,statements:statements},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRClosure"],source: "inlineClosure: anIRClosure\x0a\x09| inlinedClosure sequence statements |\x0a\x0a\x09inlinedClosure := self inlinedClosure.\x0a\x09inlinedClosure \x0a\x09\x09scope: anIRClosure scope;\x0a\x09\x09parent: anIRClosure parent.\x0a\x0a\x09\x22Add the possible temp declarations\x22\x0a\x09anIRClosure tempDeclarations do: [ :each |\x0a\x09\x09\x09inlinedClosure add: each ].\x0a\x0a\x09\x22Add a block sequence\x22\x0a\x09sequence := self inlinedSequence.\x0a\x0a\x09\x22Map the closure arguments to the receiver of the message send\x22\x0a\x09anIRClosure arguments do: [ :each |\x0a\x09\x09inlinedClosure add: (IRTempDeclaration new name: each; yourself).\x0a\x09\x09sequence add: (IRAssignment new\x0a\x09\x09\x09add: (IRVariable new variable: (AliasVar new scope: inlinedClosure scope; name: each; yourself));\x0a\x09\x09\x09add: (IRVariable new variable: (AliasVar new scope: inlinedClosure scope; name: '$receiver'; yourself));\x0a\x09\x09\x09yourself) ].\x0a\x09\x09\x09\x0a\x09\x22To ensure the correct order of the closure instructions: first the temps then the sequence\x22\x0a\x09inlinedClosure add: sequence.\x0a\x0a\x09\x22Get all the statements\x22\x0a\x09statements := anIRClosure instructions last instructions.\x0a\x09\x0a\x09statements ifNotEmpty: [\x0a\x09\x09statements allButLast do: [ :each | sequence add: each ].\x0a\x0a\x09\x09\x22Inlined closures don't have implicit local returns\x22\x0a\x09\x09(statements last isReturn and: [ statements last isBlockReturn ])\x0a\x09\x09\x09ifTrue: [ sequence add: statements last instructions first ]\x0a\x09\x09\x09ifFalse: [ sequence add: statements last ] ].\x0a\x0a\x09^ inlinedClosure",referencedClasses: ["IRTempDeclaration", "IRAssignment", "IRVariable", "AliasVar"],//>>excludeEnd("ide");messageSends: ["inlinedClosure", "scope:", "scope", "parent:", "parent", "do:", "tempDeclarations", "add:", "inlinedSequence", "arguments", "name:", "new", "yourself", "variable:", "instructions", "last", "ifNotEmpty:", "allButLast", "ifTrue:ifFalse:", "and:", "isReturn", "isBlockReturn", "first"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlineSend:",protocol: 'inlining',fn: function (anIRSend){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $2,$1;self._send_(anIRSend);$2=self._send();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["send"]=1;//>>excludeEnd("ctx");$1=$recv($2)._selector();return self._perform_withArguments_($1,$recv($recv(self._send())._instructions())._allButFirst());//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlineSend:",{anIRSend:anIRSend},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRSend"],source: "inlineSend: anIRSend\x0a\x09self send: anIRSend.\x0a\x09^ self\x0a\x09\x09perform: self send selector\x0a\x09\x09withArguments: self send instructions allButFirst",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["send:", "perform:withArguments:", "selector", "send", "allButFirst", "instructions"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlinedClosure",protocol: 'factory',fn: function (){var self=this;function $IRInlinedClosure(){return $globals.IRInlinedClosure||(typeof IRInlinedClosure=="undefined"?nil:IRInlinedClosure)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($IRInlinedClosure())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlinedClosure",{},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "inlinedClosure\x0a\x09^ IRInlinedClosure new",referencedClasses: ["IRInlinedClosure"],//>>excludeEnd("ide");messageSends: ["new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlinedSend:withBlock:",protocol: 'inlining',fn: function (inlinedSend,anIRInstruction){var self=this;var inlinedClosure;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$5,$4,$3,$6;$1=$recv(anIRInstruction)._isClosure();if(!$core.assert($1)){self._inliningError_("Message argument should be a block");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["inliningError:"]=1;//>>excludeEnd("ctx");};$2=$recv($recv($recv(anIRInstruction)._arguments())._size()).__eq((0));if(!$core.assert($2)){self._inliningError_("Inlined block should have zero argument");};inlinedClosure=$recv(self._translator())._visit_(self._inlineClosure_(anIRInstruction));$5=self._send();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["send"]=1;//>>excludeEnd("ctx");$4=$recv($5)._instructions();$3=$recv($4)._first();$recv(inlinedSend)._add_($3);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["add:"]=1;//>>excludeEnd("ctx");$recv(inlinedSend)._add_(inlinedClosure);$recv(self._send())._replaceWith_(inlinedSend);$6=$recv($recv(inlinedSend)._method())._internalVariables();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["internalVariables"]=1;//>>excludeEnd("ctx");$recv($6)._addAll_($recv(inlinedSend)._internalVariables());return inlinedSend;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlinedSend:withBlock:",{inlinedSend:inlinedSend,anIRInstruction:anIRInstruction,inlinedClosure:inlinedClosure},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["inlinedSend", "anIRInstruction"],source: "inlinedSend: inlinedSend withBlock: anIRInstruction\x0a\x09| inlinedClosure |\x0a\x0a\x09anIRInstruction isClosure ifFalse: [ self inliningError: 'Message argument should be a block' ].\x0a\x09anIRInstruction arguments size = 0 ifFalse: [ self inliningError: 'Inlined block should have zero argument' ].\x0a\x0a\x09inlinedClosure := self translator visit: (self inlineClosure: anIRInstruction).\x0a\x0a\x09inlinedSend\x0a\x09\x09add: self send instructions first;\x0a\x09\x09add: inlinedClosure.\x0a\x0a\x09self send replaceWith: inlinedSend.\x0a\x09inlinedSend method internalVariables \x0a\x09\x09addAll: inlinedSend internalVariables.\x0a\x0a\x09^ inlinedSend",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["ifFalse:", "isClosure", "inliningError:", "=", "size", "arguments", "visit:", "translator", "inlineClosure:", "add:", "first", "instructions", "send", "replaceWith:", "addAll:", "internalVariables", "method"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlinedSend:withBlock:withBlock:",protocol: 'inlining',fn: function (inlinedSend,anIRInstruction,anotherIRInstruction){var self=this;var inlinedClosure1,inlinedClosure2;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$2,$3,$4,$7,$6,$5,$8;$1=$recv(anIRInstruction)._isClosure();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["isClosure"]=1;//>>excludeEnd("ctx");if(!$core.assert($1)){self._inliningError_("Message argument should be a block");//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["inliningError:"]=1;//>>excludeEnd("ctx");};$2=$recv(anotherIRInstruction)._isClosure();if(!$core.assert($2)){self._inliningError_("Message argument should be a block");};$3=self._translator();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["translator"]=1;//>>excludeEnd("ctx");$4=self._inlineClosure_(anIRInstruction);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["inlineClosure:"]=1;//>>excludeEnd("ctx");inlinedClosure1=$recv($3)._visit_($4);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["visit:"]=1;//>>excludeEnd("ctx");inlinedClosure2=$recv(self._translator())._visit_(self._inlineClosure_(anotherIRInstruction));$7=self._send();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["send"]=1;//>>excludeEnd("ctx");$6=$recv($7)._instructions();$5=$recv($6)._first();$recv(inlinedSend)._add_($5);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["add:"]=1;//>>excludeEnd("ctx");$recv(inlinedSend)._add_(inlinedClosure1);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["add:"]=2;//>>excludeEnd("ctx");$recv(inlinedSend)._add_(inlinedClosure2);$recv(self._send())._replaceWith_(inlinedSend);$8=$recv($recv(inlinedSend)._method())._internalVariables();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["internalVariables"]=1;//>>excludeEnd("ctx");$recv($8)._addAll_($recv(inlinedSend)._internalVariables());return inlinedSend;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlinedSend:withBlock:withBlock:",{inlinedSend:inlinedSend,anIRInstruction:anIRInstruction,anotherIRInstruction:anotherIRInstruction,inlinedClosure1:inlinedClosure1,inlinedClosure2:inlinedClosure2},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["inlinedSend", "anIRInstruction", "anotherIRInstruction"],source: "inlinedSend: inlinedSend withBlock: anIRInstruction withBlock: anotherIRInstruction\x0a\x09| inlinedClosure1 inlinedClosure2 |\x0a\x0a\x09anIRInstruction isClosure ifFalse: [ self inliningError: 'Message argument should be a block' ].\x0a\x09anotherIRInstruction isClosure ifFalse: [ self inliningError: 'Message argument should be a block' ].\x0a\x0a\x09inlinedClosure1 := self translator visit: (self inlineClosure: anIRInstruction).\x0a\x09inlinedClosure2 := self translator visit: (self inlineClosure: anotherIRInstruction).\x0a\x0a\x09inlinedSend\x0a\x09\x09add: self send instructions first;\x0a\x09\x09add: inlinedClosure1;\x0a\x09\x09add: inlinedClosure2.\x0a\x0a\x09self send replaceWith: inlinedSend.\x0a\x09inlinedSend method internalVariables \x0a\x09\x09addAll: inlinedSend internalVariables.\x0a\x09\x09\x0a\x09^ inlinedSend",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["ifFalse:", "isClosure", "inliningError:", "visit:", "translator", "inlineClosure:", "add:", "first", "instructions", "send", "replaceWith:", "addAll:", "internalVariables", "method"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlinedSequence",protocol: 'factory',fn: function (){var self=this;function $IRInlinedSequence(){return $globals.IRInlinedSequence||(typeof IRInlinedSequence=="undefined"?nil:IRInlinedSequence)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($IRInlinedSequence())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlinedSequence",{},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "inlinedSequence\x0a\x09^ IRInlinedSequence new",referencedClasses: ["IRInlinedSequence"],//>>excludeEnd("ide");messageSends: ["new"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inliningError:",protocol: 'error handling',fn: function (aString){var self=this;function $InliningError(){return $globals.InliningError||(typeof InliningError=="undefined"?nil:InliningError)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");$recv($InliningError())._signal_(aString);return self;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inliningError:",{aString:aString},$globals.IRSendInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aString"],source: "inliningError: aString\x0a\x09InliningError signal: aString",referencedClasses: ["InliningError"],//>>excludeEnd("ide");messageSends: ["signal:"]}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "send",protocol: 'accessing',fn: function (){var self=this;return self["@send"];},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "send\x0a\x09^ send",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "send:",protocol: 'accessing',fn: function (anIRSend){var self=this;self["@send"]=anIRSend;return self;},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRSend"],source: "send: anIRSend\x0a\x09send := anIRSend",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "translator",protocol: 'accessing',fn: function (){var self=this;return self["@translator"];},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "translator\x0a\x09^ translator",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "translator:",protocol: 'accessing',fn: function (anASTTranslator){var self=this;self["@translator"]=anASTTranslator;return self;},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anASTTranslator"],source: "translator: anASTTranslator\x0a\x09translator := anASTTranslator",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRSendInliner);$core.addMethod($core.method({selector: "inlinedSelectors",protocol: 'accessing',fn: function (){var self=this;return ["ifTrue:", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:", "ifNil:", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"];},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "inlinedSelectors\x0a\x09^ #('ifTrue:' 'ifFalse:' 'ifTrue:ifFalse:' 'ifFalse:ifTrue:' 'ifNil:' 'ifNotNil:' 'ifNil:ifNotNil:' 'ifNotNil:ifNil:')",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRSendInliner.klass);$core.addMethod($core.method({selector: "shouldInline:",protocol: 'accessing',fn: function (anIRInstruction){var self=this;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$1=$recv(self._inlinedSelectors())._includes_($recv(anIRInstruction)._selector());if(!$core.assert($1)){return false;};return $recv($recv($recv(anIRInstruction)._instructions())._allButFirst())._allSatisfy_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv(each)._isClosure();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,2)});//>>excludeEnd("ctx");}));//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"shouldInline:",{anIRInstruction:anIRInstruction},$globals.IRSendInliner.klass)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRInstruction"],source: "shouldInline: anIRInstruction\x0a\x09(self inlinedSelectors includes: anIRInstruction selector) ifFalse: [ ^ false ].\x0a\x09^ anIRInstruction instructions allButFirst allSatisfy: [ :each | each isClosure]",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["ifFalse:", "includes:", "inlinedSelectors", "selector", "allSatisfy:", "allButFirst", "instructions", "isClosure"]}),$globals.IRSendInliner.klass);$core.addClass('IRAssignmentInliner', $globals.IRSendInliner, ['assignment'], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRAssignmentInliner.comment="I inline message sends together with assignments by moving them around into the inline closure instructions.\x0a\x0a##Example\x0a\x0a\x09foo\x0a\x09\x09| a |\x0a\x09\x09a := true ifTrue: [ 1 ]\x0a\x0aWill produce:\x0a\x0a\x09if($core.assert(true) {\x0a\x09\x09a = 1;\x0a\x09};";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "assignment",protocol: 'accessing',fn: function (){var self=this;return self["@assignment"];},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "assignment\x0a\x09^ assignment",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRAssignmentInliner);$core.addMethod($core.method({selector: "assignment:",protocol: 'accessing',fn: function (aNode){var self=this;self["@assignment"]=aNode;return self;},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aNode"],source: "assignment: aNode\x0a\x09assignment := aNode",referencedClasses: [],//>>excludeEnd("ide");messageSends: []}),$globals.IRAssignmentInliner);$core.addMethod($core.method({selector: "inlineAssignment:",protocol: 'inlining',fn: function (anIRAssignment){var self=this;var inlinedAssignment;function $IRInlinedAssignment(){return $globals.IRInlinedAssignment||(typeof IRInlinedAssignment=="undefined"?nil:IRInlinedAssignment)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;self._assignment_(anIRAssignment);inlinedAssignment=$recv($IRInlinedAssignment())._new();$1=$recv(anIRAssignment)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$recv($1)._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv(inlinedAssignment)._add_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});//>>excludeEnd("ctx");}));$recv(anIRAssignment)._replaceWith_(inlinedAssignment);self._inlineSend_($recv($recv(inlinedAssignment)._instructions())._last());return inlinedAssignment;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlineAssignment:",{anIRAssignment:anIRAssignment,inlinedAssignment:inlinedAssignment},$globals.IRAssignmentInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRAssignment"],source: "inlineAssignment: anIRAssignment\x0a\x09| inlinedAssignment |\x0a\x09self assignment: anIRAssignment.\x0a\x09inlinedAssignment := IRInlinedAssignment new.\x0a\x09anIRAssignment instructions do: [ :each |\x0a\x09\x09inlinedAssignment add: each ].\x0a\x09anIRAssignment replaceWith: inlinedAssignment.\x0a\x09self inlineSend: inlinedAssignment instructions last.\x0a\x09^ inlinedAssignment",referencedClasses: ["IRInlinedAssignment"],//>>excludeEnd("ide");messageSends: ["assignment:", "new", "do:", "instructions", "add:", "replaceWith:", "inlineSend:", "last"]}),$globals.IRAssignmentInliner);$core.addMethod($core.method({selector: "inlineClosure:",protocol: 'inlining',fn: function (anIRClosure){var self=this;var inlinedClosure,statements;function $IRAssignment(){return $globals.IRAssignment||(typeof IRAssignment=="undefined"?nil:IRAssignment)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $2,$1,$4,$3,$5,$7,$6;inlinedClosure=(//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = true, //>>excludeEnd("ctx");$globals.IRAssignmentInliner.superclass.fn.prototype._inlineClosure_.apply($recv(self), [anIRClosure]));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = false;//>>excludeEnd("ctx");;$2=$recv(inlinedClosure)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=2;//>>excludeEnd("ctx");$1=$recv($2)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["last"]=1;//>>excludeEnd("ctx");statements=$recv($1)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$recv(statements)._ifNotEmpty_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$4=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=2;//>>excludeEnd("ctx");$3=$recv($4)._canBeAssigned();if($core.assert($3)){$5=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=3;//>>excludeEnd("ctx");$7=$recv($IRAssignment())._new();$recv($7)._add_($recv($recv(self._assignment())._instructions())._first());//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["add:"]=1;//>>excludeEnd("ctx");$recv($7)._add_($recv($recv(statements)._last())._copy());$6=$recv($7)._yourself();return $recv($5)._replaceWith_($6);};//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}));return inlinedClosure;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlineClosure:",{anIRClosure:anIRClosure,inlinedClosure:inlinedClosure,statements:statements},$globals.IRAssignmentInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRClosure"],source: "inlineClosure: anIRClosure\x0a\x09| inlinedClosure statements |\x0a\x0a\x09inlinedClosure := super inlineClosure: anIRClosure.\x0a\x09statements := inlinedClosure instructions last instructions.\x0a\x09\x0a\x09statements ifNotEmpty: [\x0a\x09\x09statements last canBeAssigned ifTrue: [\x0a\x09\x09\x09statements last replaceWith: (IRAssignment new\x0a\x09\x09\x09\x09add: self assignment instructions first;\x0a\x09\x09\x09\x09add: statements last copy;\x0a\x09\x09\x09\x09yourself) ] ].\x0a\x0a\x09^ inlinedClosure",referencedClasses: ["IRAssignment"],//>>excludeEnd("ide");messageSends: ["inlineClosure:", "instructions", "last", "ifNotEmpty:", "ifTrue:", "canBeAssigned", "replaceWith:", "add:", "new", "first", "assignment", "copy", "yourself"]}),$globals.IRAssignmentInliner);$core.addClass('IRReturnInliner', $globals.IRSendInliner, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.IRReturnInliner.comment="I inline message sends with inlined closure together with a return instruction.";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "inlineClosure:",protocol: 'inlining',fn: function (anIRClosure){var self=this;var closure,statements;function $IRReturn(){return $globals.IRReturn||(typeof IRReturn=="undefined"?nil:IRReturn)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1,$3,$2,$4,$5;closure=(//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = true, //>>excludeEnd("ctx");$globals.IRReturnInliner.superclass.fn.prototype._inlineClosure_.apply($recv(self), [anIRClosure]));//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.supercall = false;//>>excludeEnd("ctx");;$1=$recv($recv(closure)._instructions())._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["last"]=1;//>>excludeEnd("ctx");statements=$recv($1)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$recv(statements)._ifNotEmpty_((function(){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");$3=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=2;//>>excludeEnd("ctx");$2=$recv($3)._isReturn();if(!$core.assert($2)){$4=$recv(statements)._last();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx2.sendIdx["last"]=3;//>>excludeEnd("ctx");$5=$recv($IRReturn())._new();$recv($5)._add_($recv($recv(statements)._last())._copy());return $recv($4)._replaceWith_($recv($5)._yourself());};//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)});//>>excludeEnd("ctx");}));return closure;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlineClosure:",{anIRClosure:anIRClosure,closure:closure,statements:statements},$globals.IRReturnInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRClosure"],source: "inlineClosure: anIRClosure\x0a\x09| closure statements |\x0a\x0a\x09closure := super inlineClosure: anIRClosure.\x0a\x09statements := closure instructions last instructions.\x0a\x09\x0a\x09statements ifNotEmpty: [\x0a\x09\x09statements last isReturn\x0a\x09\x09\x09ifFalse: [ statements last replaceWith: (IRReturn new\x0a\x09\x09\x09\x09add: statements last copy;\x0a\x09\x09\x09\x09yourself)] ].\x0a\x0a\x09^ closure",referencedClasses: ["IRReturn"],//>>excludeEnd("ide");messageSends: ["inlineClosure:", "instructions", "last", "ifNotEmpty:", "ifFalse:", "isReturn", "replaceWith:", "add:", "new", "copy", "yourself"]}),$globals.IRReturnInliner);$core.addMethod($core.method({selector: "inlineReturn:",protocol: 'inlining',fn: function (anIRReturn){var self=this;var return_;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;return_=self._inlinedReturn();$1=$recv(anIRReturn)._instructions();//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["instructions"]=1;//>>excludeEnd("ctx");$recv($1)._do_((function(each){//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx2) {//>>excludeEnd("ctx");return $recv(return_)._add_(each);//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)});//>>excludeEnd("ctx");}));$recv(anIRReturn)._replaceWith_(return_);self._inlineSend_($recv($recv(return_)._instructions())._last());return return_;//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlineReturn:",{anIRReturn:anIRReturn,return_:return_},$globals.IRReturnInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["anIRReturn"],source: "inlineReturn: anIRReturn\x0a\x09| return |\x0a\x09return := self inlinedReturn.\x0a\x09anIRReturn instructions do: [ :each |\x0a\x09\x09return add: each ].\x0a\x09anIRReturn replaceWith: return.\x0a\x09self inlineSend: return instructions last.\x0a\x09^ return",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["inlinedReturn", "do:", "instructions", "add:", "replaceWith:", "inlineSend:", "last"]}),$globals.IRReturnInliner);$core.addMethod($core.method({selector: "inlinedReturn",protocol: 'factory',fn: function (){var self=this;function $IRInlinedReturn(){return $globals.IRInlinedReturn||(typeof IRInlinedReturn=="undefined"?nil:IRInlinedReturn)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($IRInlinedReturn())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inlinedReturn",{},$globals.IRReturnInliner)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "inlinedReturn\x0a\x09^ IRInlinedReturn new",referencedClasses: ["IRInlinedReturn"],//>>excludeEnd("ide");messageSends: ["new"]}),$globals.IRReturnInliner);$core.addClass('InliningCodeGenerator', $globals.CodeGenerator, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.InliningCodeGenerator.comment="I am a specialized code generator that uses inlining to produce more optimized JavaScript output";//>>excludeEnd("ide");$core.addMethod($core.method({selector: "compileNode:",protocol: 'compiling',fn: function (aNode){var self=this;var ir,stream;//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");var $1;$recv(self._semanticAnalyzer())._visit_(aNode);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["visit:"]=1;//>>excludeEnd("ctx");ir=$recv(self._translator())._visit_(aNode);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["visit:"]=2;//>>excludeEnd("ctx");$recv(self._inliner())._visit_(ir);//>>excludeStart("ctx", pragmas.excludeDebugContexts);$ctx1.sendIdx["visit:"]=3;//>>excludeEnd("ctx");$1=self._irTranslator();$recv($1)._currentClass_(self._currentClass());$recv($1)._visit_(ir);return $recv($1)._contents();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"compileNode:",{aNode:aNode,ir:ir,stream:stream},$globals.InliningCodeGenerator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: ["aNode"],source: "compileNode: aNode\x0a\x09| ir stream |\x0a\x0a\x09self semanticAnalyzer visit: aNode.\x0a\x09ir := self translator visit: aNode.\x0a\x09self inliner visit: ir.\x0a\x0a\x09^ self irTranslator\x0a\x09\x09currentClass: self currentClass;\x0a\x09\x09visit: ir;\x0a\x09\x09contents",referencedClasses: [],//>>excludeEnd("ide");messageSends: ["visit:", "semanticAnalyzer", "translator", "inliner", "currentClass:", "irTranslator", "currentClass", "contents"]}),$globals.InliningCodeGenerator);$core.addMethod($core.method({selector: "inliner",protocol: 'compiling',fn: function (){var self=this;function $IRInliner(){return $globals.IRInliner||(typeof IRInliner=="undefined"?nil:IRInliner)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($IRInliner())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"inliner",{},$globals.InliningCodeGenerator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "inliner\x0a\x09^ IRInliner new",referencedClasses: ["IRInliner"],//>>excludeEnd("ide");messageSends: ["new"]}),$globals.InliningCodeGenerator);$core.addMethod($core.method({selector: "irTranslator",protocol: 'compiling',fn: function (){var self=this;function $IRInliningJSTranslator(){return $globals.IRInliningJSTranslator||(typeof IRInliningJSTranslator=="undefined"?nil:IRInliningJSTranslator)}//>>excludeStart("ctx", pragmas.excludeDebugContexts);return $core.withContext(function($ctx1) {//>>excludeEnd("ctx");return $recv($IRInliningJSTranslator())._new();//>>excludeStart("ctx", pragmas.excludeDebugContexts);}, function($ctx1) {$ctx1.fill(self,"irTranslator",{},$globals.InliningCodeGenerator)});//>>excludeEnd("ctx");},//>>excludeStart("ide", pragmas.excludeIdeData);args: [],source: "irTranslator\x0a\x09^ IRInliningJSTranslator new",referencedClasses: ["IRInliningJSTranslator"],//>>excludeEnd("ide");messageSends: ["new"]}),$globals.InliningCodeGenerator);$core.addClass('InliningError', $globals.SemanticError, [], 'Compiler-Inlining');//>>excludeStart("ide", pragmas.excludeIdeData);$globals.InliningError.comment="Instances of InliningError are signaled when using an `InliningCodeGenerator`in a `Compiler`.";//>>excludeEnd("ide");});
 |