| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321 | smalltalk.addPackage('Kernel-Objects', {});smalltalk.addClass('Object', smalltalk.nil, [], 'Kernel-Objects');smalltalk.addMethod("__minus_gt",smalltalk.method({selector: "->",fn: function (anObject) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Association || Association, "_key_value_", [self, anObject]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("__eq",smalltalk.method({selector: "=",fn: function (anObject) {    var self = this;    var $1;    $1 = smalltalk.send(self, "__eq_eq", [anObject]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("__eq_eq",smalltalk.method({selector: "==",fn: function (anObject) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_identityHash", []), "__eq", [smalltalk.send(anObject, "_identityHash", [])]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_asJSON",smalltalk.method({selector: "asJSON",fn: function () {    var self = this;    var variables;    variables = smalltalk.send(smalltalk.HashedCollection || HashedCollection, "_new", []);    smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_allInstanceVariableNames", []), "_do_", [function (each) {return smalltalk.send(variables, "_at_put_", [each, smalltalk.send(smalltalk.send(self, "_instVarAt_", [each]), "_asJSON", [])]);}]);    return variables;}}),smalltalk.Object);smalltalk.addMethod("_asJSONString",smalltalk.method({selector: "asJSONString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.JSON || JSON, "_stringify_", [smalltalk.send(self, "_asJSON", [])]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_asJavascript",smalltalk.method({selector: "asJavascript",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_asString", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_asString",smalltalk.method({selector: "asString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_printString", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_basicAt_",smalltalk.method({selector: "basicAt:",fn: function (aString) {    var self = this;    return self[aString];    return self;}}),smalltalk.Object);smalltalk.addMethod("_basicAt_put_",smalltalk.method({selector: "basicAt:put:",fn: function (aString, anObject) {    var self = this;    return self[aString] = anObject;    return self;}}),smalltalk.Object);smalltalk.addMethod("_basicDelete_",smalltalk.method({selector: "basicDelete:",fn: function (aString) {    var self = this;    delete self[aString];    return aString;    return self;}}),smalltalk.Object);smalltalk.addMethod("_basicPerform_",smalltalk.method({selector: "basicPerform:",fn: function (aSymbol) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_basicPerform_withArguments_", [aSymbol, []]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_basicPerform_withArguments_",smalltalk.method({selector: "basicPerform:withArguments:",fn: function (aSymbol, aCollection) {    var self = this;    return self[aSymbol].apply(self, aCollection);    return self;}}),smalltalk.Object);smalltalk.addMethod("_class",smalltalk.method({selector: "class",fn: function () {    var self = this;    return self.klass;    return self;}}),smalltalk.Object);smalltalk.addMethod("_copy",smalltalk.method({selector: "copy",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_shallowCopy", []), "_postCopy", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_deepCopy",smalltalk.method({selector: "deepCopy",fn: function () {    var self = this;    var copy = self.klass._new();    for (var i in self) {        if (/^@.+/.test(i)) {            copy[i] = self[i]._deepCopy();        }    }    return copy;    return self;}}),smalltalk.Object);smalltalk.addMethod("_deprecatedAPI",smalltalk.method({selector: "deprecatedAPI",fn: function () {    var self = this;    smalltalk.send(console, "_warn_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(thisContext, "_home", []), "_asString", []), "__comma", [" is deprecated! (in "]), "__comma", [smalltalk.send(smalltalk.send(smalltalk.send(thisContext, "_home", []), "_home", []), "_asString", [])]), "__comma", [")"])]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_doesNotUnderstand_",smalltalk.method({selector: "doesNotUnderstand:",fn: function (aMessage) {    var self = this;    var $1, $2;    $1 = smalltalk.send(smalltalk.MessageNotUnderstood || MessageNotUnderstood, "_new", []);    smalltalk.send($1, "_receiver_", [self]);    smalltalk.send($1, "_message_", [aMessage]);    $2 = smalltalk.send($1, "_signal", []);    return self;}}),smalltalk.Object);smalltalk.addMethod("_error_",smalltalk.method({selector: "error:",fn: function (aString) {    var self = this;    smalltalk.send(smalltalk.Error || Error, "_signal_", [aString]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_halt",smalltalk.method({selector: "halt",fn: function () {    var self = this;    smalltalk.send(self, "_error_", ["Halt encountered"]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_identityHash",smalltalk.method({selector: "identityHash",fn: function () {    var self = this;    var hash = self.identityHash;    if (hash) {        return hash;    }    hash = smalltalk.nextId();    Object.defineProperty(self, "identityHash", {value: hash});    return hash;    return self;}}),smalltalk.Object);smalltalk.addMethod("_ifNil_",smalltalk.method({selector: "ifNil:",fn: function (aBlock) {    var self = this;    return self;}}),smalltalk.Object);smalltalk.addMethod("_ifNil_ifNotNil_",smalltalk.method({selector: "ifNil:ifNotNil:",fn: function (aBlock, anotherBlock) {    var self = this;    var $1;    $1 = smalltalk.send(anotherBlock, "_value", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_ifNotNil_",smalltalk.method({selector: "ifNotNil:",fn: function (aBlock) {    var self = this;    var $1;    $1 = smalltalk.send(aBlock, "_value", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_ifNotNil_ifNil_",smalltalk.method({selector: "ifNotNil:ifNil:",fn: function (aBlock, anotherBlock) {    var self = this;    var $1;    $1 = smalltalk.send(aBlock, "_value", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_initialize",smalltalk.method({selector: "initialize",fn: function () {    var self = this;    return self;}}),smalltalk.Object);smalltalk.addMethod("_instVarAt_",smalltalk.method({selector: "instVarAt:",fn: function (aSymbol) {    var self = this;    var varname;    varname = smalltalk.send(aSymbol, "_asString", []);    return self["@" + varname];    return self;}}),smalltalk.Object);smalltalk.addMethod("_instVarAt_put_",smalltalk.method({selector: "instVarAt:put:",fn: function (aSymbol, anObject) {    var self = this;    var varname;    varname = smalltalk.send(aSymbol, "_asString", []);    self["@" + varname] = anObject;    return self;}}),smalltalk.Object);smalltalk.addMethod("_isClass",smalltalk.method({selector: "isClass",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_isKindOf_",smalltalk.method({selector: "isKindOf:",fn: function (aClass) {    var self = this;    var $2, $1;    $2 = smalltalk.send(self, "_isMemberOf_", [aClass]);    if (smalltalk.assert($2)) {        $1 = true;    } else {        $1 = smalltalk.send(smalltalk.send(self, "_class", []), "_inheritsFrom_", [aClass]);    }    return $1;}}),smalltalk.Object);smalltalk.addMethod("_isMemberOf_",smalltalk.method({selector: "isMemberOf:",fn: function (aClass) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [aClass]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_isMetaclass",smalltalk.method({selector: "isMetaclass",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_isNil",smalltalk.method({selector: "isNil",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_isNumber",smalltalk.method({selector: "isNumber",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_isParseFailure",smalltalk.method({selector: "isParseFailure",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_isString",smalltalk.method({selector: "isString",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_isSymbol",smalltalk.method({selector: "isSymbol",fn: function () {    var self = this;    return false;}}),smalltalk.Object);smalltalk.addMethod("_log_block_",smalltalk.method({selector: "log:block:",fn: function (aString, aBlock) {    var self = this;    var result;    smalltalk.send(console, "_log_", [smalltalk.send(smalltalk.send(aString, "__comma", [" time: "]), "__comma", [smalltalk.send(smalltalk.send(smalltalk.Date || Date, "_millisecondsToRun_", [function () {result = smalltalk.send(aBlock, "_value", []);return result;}]), "_printString", [])])]);    return result;}}),smalltalk.Object);smalltalk.addMethod("_notNil",smalltalk.method({selector: "notNil",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_isNil", []), "_not", []);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_perform_",smalltalk.method({selector: "perform:",fn: function (aSymbol) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_perform_withArguments_", [aSymbol, []]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_perform_withArguments_",smalltalk.method({selector: "perform:withArguments:",fn: function (aSymbol, aCollection) {    var self = this;    var selector;    selector = smalltalk.send(aSymbol, "_asSelector", []);    return smalltalk.send(self, selector, aCollection);    return self;}}),smalltalk.Object);smalltalk.addMethod("_postCopy",smalltalk.method({selector: "postCopy",fn: function () {    var self = this;    return self;}}),smalltalk.Object);smalltalk.addMethod("_printNl",smalltalk.method({selector: "printNl",fn: function () {    var self = this;    console.log(self);    return self;}}),smalltalk.Object);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send("a ", "__comma", [smalltalk.send(smalltalk.send(self, "_class", []), "_name", [])]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_respondsTo_",smalltalk.method({selector: "respondsTo:",fn: function (aSelector) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_class", []), "_canUnderstand_", [aSelector]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_shallowCopy",smalltalk.method({selector: "shallowCopy",fn: function () {    var self = this;    var copy = self.klass._new();    for (var i in self) {        if (/^@.+/.test(i)) {            copy[i] = self[i];        }    }    return copy;    return self;}}),smalltalk.Object);smalltalk.addMethod("_shouldNotImplement",smalltalk.method({selector: "shouldNotImplement",fn: function () {    var self = this;    smalltalk.send(self, "_error_", [smalltalk.send("This method should not be implemented in ", "__comma", [smalltalk.send(smalltalk.send(self, "_class", []), "_name", [])])]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_size",smalltalk.method({selector: "size",fn: function () {    var self = this;    smalltalk.send(self, "_error_", ["Object not indexable"]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_storeOn_",smalltalk.method({selector: "storeOn:",fn: function (aStream) {    var self = this;    smalltalk.send(aStream, "_nextPutAll_", [smalltalk.send(self, "_printString", [])]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_storeString",smalltalk.method({selector: "storeString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.String || String, "_streamContents_", [function (s) {return smalltalk.send(self, "_storeOn_", [s]);}]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_subclassResponsibility",smalltalk.method({selector: "subclassResponsibility",fn: function () {    var self = this;    smalltalk.send(self, "_error_", ["This method is a responsibility of a subclass"]);    return self;}}),smalltalk.Object);smalltalk.addMethod("_throw_",smalltalk.method({selector: "throw:",fn: function (anObject) {    var self = this;    throw anObject;    return self;}}),smalltalk.Object);smalltalk.addMethod("_try_catch_",smalltalk.method({selector: "try:catch:",fn: function (aBlock, anotherBlock) {    var self = this;    try {        result = aBlock();    } catch (e) {        result = anotherBlock(e);    }    return result;    return self;}}),smalltalk.Object);smalltalk.addMethod("_value",smalltalk.method({selector: "value",fn: function () {    var self = this;    return self;}}),smalltalk.Object);smalltalk.addMethod("_yourself",smalltalk.method({selector: "yourself",fn: function () {    var self = this;    return self;}}),smalltalk.Object);smalltalk.addMethod("_~_eq",smalltalk.method({selector: "~=",fn: function (anObject) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "__eq", [anObject]), "__eq", [false]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_~~",smalltalk.method({selector: "~~",fn: function (anObject) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "__eq_eq", [anObject]), "__eq", [false]);    return $1;}}),smalltalk.Object);smalltalk.addMethod("_initialize",smalltalk.method({selector: "initialize",fn: function () {    var self = this;    return self;}}),smalltalk.Object.klass);smalltalk.addClass('Boolean', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("_&",smalltalk.method({selector: "&",fn: function (aBoolean) {    var self = this;    if (self == true) {        return aBoolean;    } else {        return false;    }    return self;}}),smalltalk.Boolean);smalltalk.addMethod("__eq",smalltalk.method({selector: "=",fn: function (aBoolean) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(aBoolean, "_class", []), "__eq", [smalltalk.send(self, "_class", [])]);    if (!smalltalk.assert($1)) {        return false;    }    return Boolean(self == true) == aBoolean;    return self;}}),smalltalk.Boolean);smalltalk.addMethod("__eq_eq",smalltalk.method({selector: "==",fn: function (aBoolean) {    var self = this;    var $1;    $1 = smalltalk.send(self, "__eq", [aBoolean]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_and_",smalltalk.method({selector: "and:",fn: function (aBlock) {    var self = this;    var $2, $1;    $2 = smalltalk.send(self, "__eq", [true]);    $1 = smalltalk.send($2, "_ifTrue_ifFalse_", [aBlock, function () {return false;}]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_asJSON",smalltalk.method({selector: "asJSON",fn: function () {    var self = this;    return self;}}),smalltalk.Boolean);smalltalk.addMethod("_deepCopy",smalltalk.method({selector: "deepCopy",fn: function () {    var self = this;    return self;}}),smalltalk.Boolean);smalltalk.addMethod("_ifFalse_",smalltalk.method({selector: "ifFalse:",fn: function (aBlock) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_ifTrue_ifFalse_", [function () {}, aBlock]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_ifFalse_ifTrue_",smalltalk.method({selector: "ifFalse:ifTrue:",fn: function (aBlock, anotherBlock) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_ifTrue_ifFalse_", [anotherBlock, aBlock]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_ifTrue_",smalltalk.method({selector: "ifTrue:",fn: function (aBlock) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_ifTrue_ifFalse_", [aBlock, function () {}]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_ifTrue_ifFalse_",smalltalk.method({selector: "ifTrue:ifFalse:",fn: function (aBlock, anotherBlock) {    var self = this;    if (self == true) {        return aBlock();    } else {        return anotherBlock();    }    return self;}}),smalltalk.Boolean);smalltalk.addMethod("_not",smalltalk.method({selector: "not",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "__eq", [false]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_or_",smalltalk.method({selector: "or:",fn: function (aBlock) {    var self = this;    var $2, $1;    $2 = smalltalk.send(self, "__eq", [true]);    $1 = smalltalk.send($2, "_ifTrue_ifFalse_", [function () {return true;}, aBlock]);    return $1;}}),smalltalk.Boolean);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    return self.toString();    return self;}}),smalltalk.Boolean);smalltalk.addMethod("_shallowCopy",smalltalk.method({selector: "shallowCopy",fn: function () {    var self = this;    return self;}}),smalltalk.Boolean);smalltalk.addMethod("_|",smalltalk.method({selector: "|",fn: function (aBoolean) {    var self = this;    if (self == true) {        return true;    } else {        return aBoolean;    }    return self;}}),smalltalk.Boolean);smalltalk.addClass('Date', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("__plus",smalltalk.method({selector: "+",fn: function (aDate) {    var self = this;    return self + aDate;    return self;}}),smalltalk.Date);smalltalk.addMethod("__minus",smalltalk.method({selector: "-",fn: function (aDate) {    var self = this;    return self - aDate;    return self;}}),smalltalk.Date);smalltalk.addMethod("__lt",smalltalk.method({selector: "<",fn: function (aDate) {    var self = this;    return self < aDate;    return self;}}),smalltalk.Date);smalltalk.addMethod("__lt_eq",smalltalk.method({selector: "<=",fn: function (aDate) {    var self = this;    return self <= aDate;    return self;}}),smalltalk.Date);smalltalk.addMethod("__gt",smalltalk.method({selector: ">",fn: function (aDate) {    var self = this;    return self > aDate;    return self;}}),smalltalk.Date);smalltalk.addMethod("__gt_eq",smalltalk.method({selector: ">=",fn: function (aDate) {    var self = this;    return self >= aDate;    return self;}}),smalltalk.Date);smalltalk.addMethod("_asDateString",smalltalk.method({selector: "asDateString",fn: function () {    var self = this;    return self.toDateString();    return self;}}),smalltalk.Date);smalltalk.addMethod("_asLocaleString",smalltalk.method({selector: "asLocaleString",fn: function () {    var self = this;    return self.toLocaleString();    return self;}}),smalltalk.Date);smalltalk.addMethod("_asMilliseconds",smalltalk.method({selector: "asMilliseconds",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_time", []);    return $1;}}),smalltalk.Date);smalltalk.addMethod("_asNumber",smalltalk.method({selector: "asNumber",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_asMilliseconds", []);    return $1;}}),smalltalk.Date);smalltalk.addMethod("_asString",smalltalk.method({selector: "asString",fn: function () {    var self = this;    return self.toString();    return self;}}),smalltalk.Date);smalltalk.addMethod("_asTimeString",smalltalk.method({selector: "asTimeString",fn: function () {    var self = this;    return self.toTimeString();    return self;}}),smalltalk.Date);smalltalk.addMethod("_day",smalltalk.method({selector: "day",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_dayOfWeek", []);    return $1;}}),smalltalk.Date);smalltalk.addMethod("_day_",smalltalk.method({selector: "day:",fn: function (aNumber) {    var self = this;    smalltalk.send(self, "_dayOfWeek_", [aNumber]);    return self;}}),smalltalk.Date);smalltalk.addMethod("_dayOfMonth",smalltalk.method({selector: "dayOfMonth",fn: function () {    var self = this;    return self.getDate();    return self;}}),smalltalk.Date);smalltalk.addMethod("_dayOfMonth_",smalltalk.method({selector: "dayOfMonth:",fn: function (aNumber) {    var self = this;    self.setDate(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_dayOfWeek",smalltalk.method({selector: "dayOfWeek",fn: function () {    var self = this;    return self.getDay() + 1;    return self;}}),smalltalk.Date);smalltalk.addMethod("_dayOfWeek_",smalltalk.method({selector: "dayOfWeek:",fn: function (aNumber) {    var self = this;    return self.setDay(aNumber - 1);    return self;}}),smalltalk.Date);smalltalk.addMethod("_hours",smalltalk.method({selector: "hours",fn: function () {    var self = this;    return self.getHours();    return self;}}),smalltalk.Date);smalltalk.addMethod("_hours_",smalltalk.method({selector: "hours:",fn: function (aNumber) {    var self = this;    self.setHours(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_milliseconds",smalltalk.method({selector: "milliseconds",fn: function () {    var self = this;    return self.getMilliseconds();    return self;}}),smalltalk.Date);smalltalk.addMethod("_milliseconds_",smalltalk.method({selector: "milliseconds:",fn: function (aNumber) {    var self = this;    self.setMilliseconds(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_minutes",smalltalk.method({selector: "minutes",fn: function () {    var self = this;    return self.getMinutes();    return self;}}),smalltalk.Date);smalltalk.addMethod("_minutes_",smalltalk.method({selector: "minutes:",fn: function (aNumber) {    var self = this;    self.setMinutes(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_month",smalltalk.method({selector: "month",fn: function () {    var self = this;    return self.getMonth() + 1;    return self;}}),smalltalk.Date);smalltalk.addMethod("_month_",smalltalk.method({selector: "month:",fn: function (aNumber) {    var self = this;    self.setMonth(aNumber - 1);    return self;}}),smalltalk.Date);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_asString", []);    return $1;}}),smalltalk.Date);smalltalk.addMethod("_seconds",smalltalk.method({selector: "seconds",fn: function () {    var self = this;    return self.getSeconds();    return self;}}),smalltalk.Date);smalltalk.addMethod("_seconds_",smalltalk.method({selector: "seconds:",fn: function (aNumber) {    var self = this;    self.setSeconds(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_time",smalltalk.method({selector: "time",fn: function () {    var self = this;    return self.getTime();    return self;}}),smalltalk.Date);smalltalk.addMethod("_time_",smalltalk.method({selector: "time:",fn: function (aNumber) {    var self = this;    self.setTime(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_year",smalltalk.method({selector: "year",fn: function () {    var self = this;    return self.getFullYear();    return self;}}),smalltalk.Date);smalltalk.addMethod("_year_",smalltalk.method({selector: "year:",fn: function (aNumber) {    var self = this;    self.setFullYear(aNumber);    return self;}}),smalltalk.Date);smalltalk.addMethod("_fromMilliseconds_",smalltalk.method({selector: "fromMilliseconds:",fn: function (aNumber) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_new_", [aNumber]);    return $1;}}),smalltalk.Date.klass);smalltalk.addMethod("_fromSeconds_",smalltalk.method({selector: "fromSeconds:",fn: function (aNumber) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_fromMilliseconds_", [smalltalk.send(aNumber, "__star", [1000])]);    return $1;}}),smalltalk.Date.klass);smalltalk.addMethod("_fromString_",smalltalk.method({selector: "fromString:",fn: function (aString) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_new_", [aString]);    return $1;}}),smalltalk.Date.klass);smalltalk.addMethod("_millisecondsToRun_",smalltalk.method({selector: "millisecondsToRun:",fn: function (aBlock) {    var self = this;    var $1;    var t;    t = smalltalk.send(smalltalk.Date || Date, "_now", []);    smalltalk.send(aBlock, "_value", []);    $1 = smalltalk.send(smalltalk.send(smalltalk.Date || Date, "_now", []), "__minus", [t]);    return $1;}}),smalltalk.Date.klass);smalltalk.addMethod("_new_",smalltalk.method({selector: "new:",fn: function (anObject) {    var self = this;    return new Date(anObject);    return self;}}),smalltalk.Date.klass);smalltalk.addMethod("_now",smalltalk.method({selector: "now",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_today", []);    return $1;}}),smalltalk.Date.klass);smalltalk.addMethod("_today",smalltalk.method({selector: "today",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_new", []);    return $1;}}),smalltalk.Date.klass);smalltalk.addClass('JSObjectProxy', smalltalk.Object, ['jsObject'], 'Kernel-Objects');smalltalk.addMethod("_at_",smalltalk.method({selector: "at:",fn: function (aSymbol) {    var self = this;    var attr;    attr = smalltalk.send(aSymbol, "_asString", []);    return self['@jsObject'][attr];    return self;}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_at_put_",smalltalk.method({selector: "at:put:",fn: function (aSymbol, anObject) {    var self = this;    var attr;    attr = smalltalk.send(aSymbol, "_asString", []);    self['@jsObject'][attr] = anObject;    return self;}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_doesNotUnderstand_",smalltalk.method({selector: "doesNotUnderstand:",fn: function (aMessage) {    var self = this;    var obj;    var selector;    var jsSelector;    var arguments;    obj = smalltalk.send(self, "_jsObject", []);    selector = smalltalk.send(aMessage, "_selector", []);    jsSelector = smalltalk.send(selector, "_asJavaScriptSelector", []);    arguments = smalltalk.send(aMessage, "_arguments", []);    if (obj[jsSelector] != undefined) {        return smalltalk.send(obj, jsSelector, arguments);    }    smalltalk.send(self, "_doesNotUnderstand_", [aMessage], smalltalk.Object);    return self;}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_inspectOn_",smalltalk.method({selector: "inspectOn:",fn: function (anInspector) {    var self = this;    var variables;    variables = smalltalk.send(smalltalk.Dictionary || Dictionary, "_new", []);    smalltalk.send(variables, "_at_put_", ["#self", smalltalk.send(self, "_jsObject", [])]);    smalltalk.send(anInspector, "_setLabel_", [smalltalk.send(self, "_printString", [])]);    for (var i in self['@jsObject']) {        variables._at_put_(i, self['@jsObject'][i]);    }    smalltalk.send(anInspector, "_setVariables_", [variables]);    return self;}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_jsObject",smalltalk.method({selector: "jsObject",fn: function () {    var self = this;    return self['@jsObject'];}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_jsObject_",smalltalk.method({selector: "jsObject:",fn: function (aJSObject) {    var self = this;    self['@jsObject'] = aJSObject;    return self;}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_jsObject", []), "_toString", []);    return $1;}}),smalltalk.JSObjectProxy);smalltalk.addMethod("_on_",smalltalk.method({selector: "on:",fn: function (aJSObject) {    var self = this;    var $2, $3, $1;    $2 = smalltalk.send(self, "_new", []);    smalltalk.send($2, "_jsObject_", [aJSObject]);    $3 = smalltalk.send($2, "_yourself", []);    $1 = $3;    return $1;}}),smalltalk.JSObjectProxy.klass);smalltalk.addClass('Number', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("_&",smalltalk.method({selector: "&",fn: function (aNumber) {    var self = this;    return self & aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__star",smalltalk.method({selector: "*",fn: function (aNumber) {    var self = this;    return self * aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__plus",smalltalk.method({selector: "+",fn: function (aNumber) {    var self = this;    return self + aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__minus",smalltalk.method({selector: "-",fn: function (aNumber) {    var self = this;    return self - aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__slash",smalltalk.method({selector: "/",fn: function (aNumber) {    var self = this;    return self / aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__lt",smalltalk.method({selector: "<",fn: function (aNumber) {    var self = this;    return self < aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__lt_eq",smalltalk.method({selector: "<=",fn: function (aNumber) {    var self = this;    return self <= aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__eq",smalltalk.method({selector: "=",fn: function (aNumber) {    var self = this;    var $1;    $1 = smalltalk.send(aNumber, "_isNumber", []);    if (!smalltalk.assert($1)) {        return false;    }    return Number(self) == aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__gt",smalltalk.method({selector: ">",fn: function (aNumber) {    var self = this;    return self > aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__gt_eq",smalltalk.method({selector: ">=",fn: function (aNumber) {    var self = this;    return self >= aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("__at",smalltalk.method({selector: "@",fn: function (aNumber) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Point || Point, "_x_y_", [self, aNumber]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_\x5c\x5c",smalltalk.method({selector: "\x5c\x5c",fn: function (aNumber) {    var self = this;    return self % aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("_abs",smalltalk.method({selector: "abs",fn: function () {    var self = this;    var $1;    $1 = Math.abs(self);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_asJSON",smalltalk.method({selector: "asJSON",fn: function () {    var self = this;    return self;}}),smalltalk.Number);smalltalk.addMethod("_asJavascript",smalltalk.method({selector: "asJavascript",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send("(", "__comma", [smalltalk.send(self, "_printString", [])]), "__comma", [")"]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_asPoint",smalltalk.method({selector: "asPoint",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Point || Point, "_x_y_", [self, self]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_asString",smalltalk.method({selector: "asString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_printString", []);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_atRandom",smalltalk.method({selector: "atRandom",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.Random || Random, "_new", []), "_next", []), "__star", [self]), "_truncated", []), "__plus", [1]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_clearInterval",smalltalk.method({selector: "clearInterval",fn: function () {    var self = this;    clearInterval(Number(self));    return self;}}),smalltalk.Number);smalltalk.addMethod("_clearTimeout",smalltalk.method({selector: "clearTimeout",fn: function () {    var self = this;    clearTimeout(Number(self));    return self;}}),smalltalk.Number);smalltalk.addMethod("_copy",smalltalk.method({selector: "copy",fn: function () {    var self = this;    return self;}}),smalltalk.Number);smalltalk.addMethod("_deepCopy",smalltalk.method({selector: "deepCopy",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_copy", []);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_even",smalltalk.method({selector: "even",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(0, "__eq", [smalltalk.send(self, "_\\\\", [2])]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_identityHash",smalltalk.method({selector: "identityHash",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_asString", []), "__comma", ["n"]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_isNumber",smalltalk.method({selector: "isNumber",fn: function () {    var self = this;    return true;}}),smalltalk.Number);smalltalk.addMethod("_isZero",smalltalk.method({selector: "isZero",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "__eq", [0]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_max_",smalltalk.method({selector: "max:",fn: function (aNumber) {    var self = this;    return Math.max(self, aNumber);    return self;}}),smalltalk.Number);smalltalk.addMethod("_min_",smalltalk.method({selector: "min:",fn: function (aNumber) {    var self = this;    return Math.min(self, aNumber);    return self;}}),smalltalk.Number);smalltalk.addMethod("_negated",smalltalk.method({selector: "negated",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(0, "__minus", [self]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_negative",smalltalk.method({selector: "negative",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "__lt", [0]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_odd",smalltalk.method({selector: "odd",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_even", []), "_not", []);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_positive",smalltalk.method({selector: "positive",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "__gt_eq", [0]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_printShowingDecimalPlaces_",smalltalk.method({selector: "printShowingDecimalPlaces:",fn: function (placesDesired) {    var self = this;    return self.toFixed(placesDesired);    return self;}}),smalltalk.Number);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    return String(self);    return self;}}),smalltalk.Number);smalltalk.addMethod("_rounded",smalltalk.method({selector: "rounded",fn: function () {    var self = this;    return Math.round(self);    return self;}}),smalltalk.Number);smalltalk.addMethod("_sqrt",smalltalk.method({selector: "sqrt",fn: function () {    var self = this;    return Math.sqrt(self);    return self;}}),smalltalk.Number);smalltalk.addMethod("_squared",smalltalk.method({selector: "squared",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "__star", [self]);    return $1;}}),smalltalk.Number);smalltalk.addMethod("_timesRepeat_",smalltalk.method({selector: "timesRepeat:",fn: function (aBlock) {    var self = this;    var integer;    var count;    integer = smalltalk.send(self, "_truncated", []);    count = 1;    smalltalk.send(function () {return smalltalk.send(count, "__gt", [self]);}, "_whileFalse_", [function () {smalltalk.send(aBlock, "_value", []);count = smalltalk.send(count, "__plus", [1]);return count;}]);    return self;}}),smalltalk.Number);smalltalk.addMethod("_to_",smalltalk.method({selector: "to:",fn: function (aNumber) {    var self = this;    var array;    var first;    var last;    var count;    first = smalltalk.send(self, "_truncated", []);    last = smalltalk.send(smalltalk.send(aNumber, "_truncated", []), "__plus", [1]);    count = 1;    array = smalltalk.send(smalltalk.Array || Array, "_new", []);    smalltalk.send(smalltalk.send(last, "__minus", [first]), "_timesRepeat_", [function () {smalltalk.send(array, "_at_put_", [count, first]);count = smalltalk.send(count, "__plus", [1]);count;first = smalltalk.send(first, "__plus", [1]);return first;}]);    return array;}}),smalltalk.Number);smalltalk.addMethod("_to_by_",smalltalk.method({selector: "to:by:",fn: function (stop, step) {    var self = this;    var $1, $2;    var array;    var value;    var pos;    value = self;    array = smalltalk.send(smalltalk.Array || Array, "_new", []);    pos = 1;    $1 = smalltalk.send(step, "__eq", [0]);    if (smalltalk.assert($1)) {        smalltalk.send(self, "_error_", ["step must be non-zero"]);    }    $2 = smalltalk.send(step, "__lt", [0]);    if (smalltalk.assert($2)) {        smalltalk.send(function () {return smalltalk.send(value, "__gt_eq", [stop]);}, "_whileTrue_", [function () {smalltalk.send(array, "_at_put_", [pos, value]);pos = smalltalk.send(pos, "__plus", [1]);pos;value = smalltalk.send(value, "__plus", [step]);return value;}]);    } else {        smalltalk.send(function () {return smalltalk.send(value, "__lt_eq", [stop]);}, "_whileTrue_", [function () {smalltalk.send(array, "_at_put_", [pos, value]);pos = smalltalk.send(pos, "__plus", [1]);pos;value = smalltalk.send(value, "__plus", [step]);return value;}]);    }    return array;}}),smalltalk.Number);smalltalk.addMethod("_to_by_do_",smalltalk.method({selector: "to:by:do:",fn: function (stop, step, aBlock) {    var self = this;    var $1, $2;    var value;    value = self;    $1 = smalltalk.send(step, "__eq", [0]);    if (smalltalk.assert($1)) {        smalltalk.send(self, "_error_", ["step must be non-zero"]);    }    $2 = smalltalk.send(step, "__lt", [0]);    if (smalltalk.assert($2)) {        smalltalk.send(function () {return smalltalk.send(value, "__gt_eq", [stop]);}, "_whileTrue_", [function () {smalltalk.send(aBlock, "_value_", [value]);value = smalltalk.send(value, "__plus", [step]);return value;}]);    } else {        smalltalk.send(function () {return smalltalk.send(value, "__lt_eq", [stop]);}, "_whileTrue_", [function () {smalltalk.send(aBlock, "_value_", [value]);value = smalltalk.send(value, "__plus", [step]);return value;}]);    }    return self;}}),smalltalk.Number);smalltalk.addMethod("_to_do_",smalltalk.method({selector: "to:do:",fn: function (stop, aBlock) {    var self = this;    var nextValue;    nextValue = self;    smalltalk.send(function () {return smalltalk.send(nextValue, "__lt_eq", [stop]);}, "_whileTrue_", [function () {smalltalk.send(aBlock, "_value_", [nextValue]);nextValue = smalltalk.send(nextValue, "__plus", [1]);return nextValue;}]);    return self;}}),smalltalk.Number);smalltalk.addMethod("_truncated",smalltalk.method({selector: "truncated",fn: function () {    var self = this;    var $1;    var result;    $1 = smalltalk.send(self, "__gt_eq", [0]);    if (smalltalk.assert($1)) {        result = Math.floor(self);    } else {        result = Math.floor(self * -1) * -1;    }    return result;}}),smalltalk.Number);smalltalk.addMethod("_|",smalltalk.method({selector: "|",fn: function (aNumber) {    var self = this;    return self | aNumber;    return self;}}),smalltalk.Number);smalltalk.addMethod("_pi",smalltalk.method({selector: "pi",fn: function () {    var self = this;    return Math.PI;    return self;}}),smalltalk.Number.klass);smalltalk.addClass('Organizer', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("_addElement_",smalltalk.method({selector: "addElement:",fn: function (anObject) {    var self = this;    self.addElement(anObject);    return self;}}),smalltalk.Organizer);smalltalk.addMethod("_elements",smalltalk.method({selector: "elements",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_basicAt_", ["elements"]), "_copy", []);    return $1;}}),smalltalk.Organizer);smalltalk.addMethod("_removeElement_",smalltalk.method({selector: "removeElement:",fn: function (anObject) {    var self = this;    self.removeElement(anObject);    return self;}}),smalltalk.Organizer);smalltalk.addClass('Package', smalltalk.Object, ['commitPathJs', 'commitPathSt'], 'Kernel-Objects');smalltalk.addMethod("_classes",smalltalk.method({selector: "classes",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_organization", []), "_elements", []);    return $1;}}),smalltalk.Package);smalltalk.addMethod("_commitPathJs",smalltalk.method({selector: "commitPathJs",fn: function () {    var self = this;    var $1;    if (($receiver = self['@commitPathJs']) == nil ||        $receiver == undefined) {        $1 = smalltalk.send(smalltalk.send(self, "_class", []), "_defaultCommitPathJs", []);    } else {        $1 = self['@commitPathJs'];    }    return $1;}}),smalltalk.Package);smalltalk.addMethod("_commitPathJs_",smalltalk.method({selector: "commitPathJs:",fn: function (aString) {    var self = this;    self['@commitPathJs'] = aString;    return self;}}),smalltalk.Package);smalltalk.addMethod("_commitPathSt",smalltalk.method({selector: "commitPathSt",fn: function () {    var self = this;    var $1;    if (($receiver = self['@commitPathSt']) == nil ||        $receiver == undefined) {        $1 = smalltalk.send(smalltalk.send(self, "_class", []), "_defaultCommitPathSt", []);    } else {        $1 = self['@commitPathSt'];    }    return $1;}}),smalltalk.Package);smalltalk.addMethod("_commitPathSt_",smalltalk.method({selector: "commitPathSt:",fn: function (aString) {    var self = this;    self['@commitPathSt'] = aString;    return self;}}),smalltalk.Package);smalltalk.addMethod("_dependencies",smalltalk.method({selector: "dependencies",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_propertyAt_ifAbsent_", ["dependencies", function () {return [];}]);    return $1;}}),smalltalk.Package);smalltalk.addMethod("_dependencies_",smalltalk.method({selector: "dependencies:",fn: function (anArray) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_propertyAt_put_", ["dependencies", anArray]);    return $1;}}),smalltalk.Package);smalltalk.addMethod("_jsProperties",smalltalk.method({selector: "jsProperties",fn: function () {    var self = this;    return self.properties;    return self;}}),smalltalk.Package);smalltalk.addMethod("_jsProperties_",smalltalk.method({selector: "jsProperties:",fn: function (aJSObject) {    var self = this;    return self.properties = aJSObject;    return self;}}),smalltalk.Package);smalltalk.addMethod("_name",smalltalk.method({selector: "name",fn: function () {    var self = this;    return self.pkgName;    return self;}}),smalltalk.Package);smalltalk.addMethod("_name_",smalltalk.method({selector: "name:",fn: function (aString) {    var self = this;    self.pkgName = aString;    return self;}}),smalltalk.Package);smalltalk.addMethod("_organization",smalltalk.method({selector: "organization",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_basicAt_", ["organization"]);    return $1;}}),smalltalk.Package);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(self, "_name", []);    return $1;}}),smalltalk.Package);smalltalk.addMethod("_properties",smalltalk.method({selector: "properties",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.Smalltalk || Smalltalk, "_current", []), "_readJSObject_", [smalltalk.send(self, "_basicAt_", ["properties"])]);    return $1;}}),smalltalk.Package);smalltalk.addMethod("_properties_",smalltalk.method({selector: "properties:",fn: function (aDict) {    var self = this;    var object;    object = {};    smalltalk.send(aDict, "_keysAndValuesDo_", [function (key, value) {return object[key] = value;}]);    return self.properties = object;    return self;}}),smalltalk.Package);smalltalk.addMethod("_propertiesAsJSON",smalltalk.method({selector: "propertiesAsJSON",fn: function () {    var self = this;    return JSON.stringify(self.properties);    return self;}}),smalltalk.Package);smalltalk.addMethod("_propertyAt_",smalltalk.method({selector: "propertyAt:",fn: function (key) {    var self = this;    return self.properties[key];    return self;}}),smalltalk.Package);smalltalk.addMethod("_propertyAt_ifAbsent_",smalltalk.method({selector: "propertyAt:ifAbsent:",fn: function (key, block) {    var self = this;    var $2, $1;    $2 = smalltalk.send(self, "_propertyAt_", [key]);    if (($receiver = $2) == nil || $receiver == undefined) {        $1 = smalltalk.send(block, "_value", []);    } else {        $1 = $2;    }    return $1;}}),smalltalk.Package);smalltalk.addMethod("_propertyAt_put_",smalltalk.method({selector: "propertyAt:put:",fn: function (key, value) {    var self = this;    return self.properties[key] = value;    return self;}}),smalltalk.Package);smalltalk.addMethod("_sortedClasses",smalltalk.method({selector: "sortedClasses",fn: function () {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(self, "_class", []), "_sortedClasses_", [smalltalk.send(self, "_classes", [])]);    return $1;}}),smalltalk.Package);smalltalk.Package.klass.iVarNames = ['defaultCommitPathJs','defaultCommitPathSt'];smalltalk.addMethod("_commitToLocalStorage_",smalltalk.method({selector: "commitToLocalStorage:",fn: function (aPackageName) {    var self = this;    var key;    var sourceCode;    key = smalltalk.send("smalltalk.packages.", "__comma", [aPackageName]);    sourceCode = smalltalk.send(smalltalk.send(smalltalk.Exporter || Exporter, "_new", []), "_exportPackage_", [aPackageName]);    localStorage[key] = escape(sourceCode);    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_defaultCommitPathJs",smalltalk.method({selector: "defaultCommitPathJs",fn: function () {    var self = this;    var $1;    if (($receiver = self['@defaultCommitPathJs']) == nil ||        $receiver == undefined) {        self['@defaultCommitPathJs'] = "js";        $1 = self['@defaultCommitPathJs'];    } else {        $1 = self['@defaultCommitPathJs'];    }    return $1;}}),smalltalk.Package.klass);smalltalk.addMethod("_defaultCommitPathJs_",smalltalk.method({selector: "defaultCommitPathJs:",fn: function (aString) {    var self = this;    self['@defaultCommitPathJs'] = aString;    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_defaultCommitPathSt",smalltalk.method({selector: "defaultCommitPathSt",fn: function () {    var self = this;    var $1;    if (($receiver = self['@defaultCommitPathSt']) == nil ||        $receiver == undefined) {        self['@defaultCommitPathSt'] = "st";        $1 = self['@defaultCommitPathSt'];    } else {        $1 = self['@defaultCommitPathSt'];    }    return $1;}}),smalltalk.Package.klass);smalltalk.addMethod("_defaultCommitPathSt_",smalltalk.method({selector: "defaultCommitPathSt:",fn: function (aString) {    var self = this;    self['@defaultCommitPathSt'] = aString;    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_fetch_",smalltalk.method({selector: "fetch:",fn: function (aPackageName) {    var self = this;    smalltalk.send(self, "_fetch_prefix_", [aPackageName, smalltalk.send(smalltalk.send(self, "_defaultCommitPathJs", []), "__comma", ["/"])]);    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_fetch_prefix_",smalltalk.method({selector: "fetch:prefix:",fn: function (aPackageName, aPrefix) {    var self = this;    smalltalk.send(jQuery, "_getScript_onSuccess_", [smalltalk.send(smalltalk.send(aPrefix, "__comma", [aPackageName]), "__comma", [".js"]), function () {return smalltalk.send(smalltalk.Package || Package, "_init_", [aPackageName]);}]);    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_init_",smalltalk.method({selector: "init:",fn: function (aPackageName) {    var self = this;    var $1, $2;    $1 = smalltalk.send(smalltalk.send(smalltalk, "_classes", []), "_select_", [function (each) {return each.pkg.pkgName == aPackageName;}]);    smalltalk.send($1, "_do_", [function (each) {return smalltalk.init(each);}]);    $2 = smalltalk.send($1, "_do_", [function (each) {return smalltalk.send(each, "_initialize", []);}]);    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_named_",smalltalk.method({selector: "named:",fn: function (aPackageName) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.Smalltalk || Smalltalk, "_current", []), "_packageAt_", [aPackageName]);    return $1;}}),smalltalk.Package.klass);smalltalk.addMethod("_named_ifAbsent_",smalltalk.method({selector: "named:ifAbsent:",fn: function (aPackageName, aBlock) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.Smalltalk || Smalltalk, "_current", []), "_packageAt_ifAbsent_", [aPackageName, aBlock]);    return $1;}}),smalltalk.Package.klass);smalltalk.addMethod("_resetCommitPaths",smalltalk.method({selector: "resetCommitPaths",fn: function () {    var self = this;    self['@defaultCommitPathJs'] = nil;    self['@defaultCommitPathSt'] = nil;    return self;}}),smalltalk.Package.klass);smalltalk.addMethod("_sortedClasses_",smalltalk.method({selector: "sortedClasses:",fn: function (classes) {    var self = this;    var $1;    var children;    var others;    var nodes;    var expandedClasses;    children = [];    others = [];    smalltalk.send(classes, "_do_", [function (each) {$1 = smalltalk.send(classes, "_includes_", [smalltalk.send(each, "_superclass", [])]);if (smalltalk.assert($1)) {return smalltalk.send(others, "_add_", [each]);} else {return smalltalk.send(children, "_add_", [each]);}}]);    nodes = smalltalk.send(children, "_collect_", [function (each) {return smalltalk.send(smalltalk.ClassSorterNode || ClassSorterNode, "_on_classes_level_", [each, others, 0]);}]);    nodes = smalltalk.send(nodes, "_sorted_", [function (a, b) {return smalltalk.send(smalltalk.send(smalltalk.send(a, "_theClass", []), "_name", []), "__lt_eq", [smalltalk.send(smalltalk.send(b, "_theClass", []), "_name", [])]);}]);    expandedClasses = smalltalk.send(smalltalk.Array || Array, "_new", []);    smalltalk.send(nodes, "_do_", [function (aNode) {return smalltalk.send(aNode, "_traverseClassesWith_", [expandedClasses]);}]);    return expandedClasses;}}),smalltalk.Package.klass);smalltalk.addClass('Point', smalltalk.Object, ['x', 'y'], 'Kernel-Objects');smalltalk.addMethod("__star",smalltalk.method({selector: "*",fn: function (aPoint) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Point || Point, "_x_y_", [smalltalk.send(smalltalk.send(self, "_x", []), "__star", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])]), smalltalk.send(smalltalk.send(self, "_y", []), "__star", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])])]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("__plus",smalltalk.method({selector: "+",fn: function (aPoint) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Point || Point, "_x_y_", [smalltalk.send(smalltalk.send(self, "_x", []), "__plus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])]), smalltalk.send(smalltalk.send(self, "_y", []), "__plus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])])]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("__minus",smalltalk.method({selector: "-",fn: function (aPoint) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Point || Point, "_x_y_", [smalltalk.send(smalltalk.send(self, "_x", []), "__minus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])]), smalltalk.send(smalltalk.send(self, "_y", []), "__minus", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])])]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("__slash",smalltalk.method({selector: "/",fn: function (aPoint) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.Point || Point, "_x_y_", [smalltalk.send(smalltalk.send(self, "_x", []), "__slash", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_x", [])]), smalltalk.send(smalltalk.send(self, "_y", []), "__slash", [smalltalk.send(smalltalk.send(aPoint, "_asPoint", []), "_y", [])])]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("__eq",smalltalk.method({selector: "=",fn: function (aPoint) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.send(aPoint, "_class", []), "__eq", [smalltalk.send(self, "_class", [])]), "_and_", [function () {return smalltalk.send(smalltalk.send(smalltalk.send(aPoint, "_x", []), "__eq", [smalltalk.send(self, "_x", [])]), "_&", [smalltalk.send(smalltalk.send(aPoint, "_y", []), "__eq", [smalltalk.send(self, "_y", [])])]);}]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("_asPoint",smalltalk.method({selector: "asPoint",fn: function () {    var self = this;    return self;}}),smalltalk.Point);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    var $2, $1;    $1 = smalltalk.send(smalltalk.String || String, "_streamContents_", [function (stream) {smalltalk.send(stream, "_nextPutAll_", [smalltalk.send(smalltalk.send(self['@x'], "_printString", []), "__comma", ["@"])]);$2 = smalltalk.send(smalltalk.send(self['@y'], "_notNil", []), "_and_", [function () {return smalltalk.send(self['@y'], "_negative", []);}]);if (smalltalk.assert($2)) {smalltalk.send(stream, "_space", []);}return smalltalk.send(stream, "_nextPutAll_", [smalltalk.send(self['@y'], "_printString", [])]);}]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("_translateBy_",smalltalk.method({selector: "translateBy:",fn: function (delta) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.send(delta, "_x", []), "__plus", [self['@x']]), "__at", [smalltalk.send(smalltalk.send(delta, "_y", []), "__plus", [self['@y']])]);    return $1;}}),smalltalk.Point);smalltalk.addMethod("_x",smalltalk.method({selector: "x",fn: function () {    var self = this;    return self['@x'];}}),smalltalk.Point);smalltalk.addMethod("_x_",smalltalk.method({selector: "x:",fn: function (aNumber) {    var self = this;    self['@x'] = aNumber;    return self;}}),smalltalk.Point);smalltalk.addMethod("_y",smalltalk.method({selector: "y",fn: function () {    var self = this;    return self['@y'];}}),smalltalk.Point);smalltalk.addMethod("_y_",smalltalk.method({selector: "y:",fn: function (aNumber) {    var self = this;    self['@y'] = aNumber;    return self;}}),smalltalk.Point);smalltalk.addMethod("_x_y_",smalltalk.method({selector: "x:y:",fn: function (aNumber, anotherNumber) {    var self = this;    var $2, $3, $1;    $2 = smalltalk.send(self, "_new", []);    smalltalk.send($2, "_x_", [aNumber]);    smalltalk.send($2, "_y_", [anotherNumber]);    $3 = smalltalk.send($2, "_yourself", []);    $1 = $3;    return $1;}}),smalltalk.Point.klass);smalltalk.addClass('Random', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("_next",smalltalk.method({selector: "next",fn: function () {    var self = this;    return Math.random();    return self;}}),smalltalk.Random);smalltalk.addMethod("_next_",smalltalk.method({selector: "next:",fn: function (anInteger) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(1, "_to_", [anInteger]), "_collect_", [function (each) {return smalltalk.send(self, "_next", []);}]);    return $1;}}),smalltalk.Random);smalltalk.addClass('Smalltalk', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("_at_",smalltalk.method({selector: "at:",fn: function (aSymbol) {    var self = this;    return self[aSymbol._asString()];    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_basicParse_",smalltalk.method({selector: "basicParse:",fn: function (aString) {    var self = this;    return smalltalk.parser.parse(aString);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_classes",smalltalk.method({selector: "classes",fn: function () {    var self = this;    return self.classes();    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_createPackage_",smalltalk.method({selector: "createPackage:",fn: function (packageName) {    var self = this;    return smalltalk.addPackage(packageName, nil);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_createPackage_properties_",smalltalk.method({selector: "createPackage:properties:",fn: function (packageName, aDict) {    var self = this;    var object;    object = {};    smalltalk.send(aDict, "_keysAndValuesDo_", [function (key, value) {return object[key] = value;}]);    return smalltalk.addPackage(packageName, object);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_deleteClass_",smalltalk.method({selector: "deleteClass:",fn: function (aClass) {    var self = this;    self.removeClass(aClass);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_deletePackage_",smalltalk.method({selector: "deletePackage:",fn: function (packageName) {    var self = this;    delete smalltalk.packages[packageName];    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_packageAt_",smalltalk.method({selector: "packageAt:",fn: function (packageName) {    var self = this;    return self.packages[packageName];    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_packageAt_ifAbsent_",smalltalk.method({selector: "packageAt:ifAbsent:",fn: function (packageName, aBlock) {    var self = this;    var $2, $1;    $2 = smalltalk.send(self, "_packageAt_", [packageName]);    $1 = smalltalk.send($2, "_ifNil_", [aBlock]);    return $1;}}),smalltalk.Smalltalk);smalltalk.addMethod("_packages",smalltalk.method({selector: "packages",fn: function () {    var self = this;    return self.packages.all();    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_parse_",smalltalk.method({selector: "parse:",fn: function (aString) {    var self = this;    var result;    smalltalk.send(self, "_try_catch_", [function () {result = smalltalk.send(self, "_basicParse_", [aString]);return result;}, function (ex) {return smalltalk.send(smalltalk.send(self, "_parseError_parsing_", [ex, aString]), "_signal", []);}]);    return result;}}),smalltalk.Smalltalk);smalltalk.addMethod("_parseError_parsing_",smalltalk.method({selector: "parseError:parsing:",fn: function (anException, aString) {    var self = this;    var $1;    var row;    var col;    var message;    var lines;    var badLine;    var code;    row = anException.line;    col = anException.column;    message = anException.message;    lines = smalltalk.send(aString, "_lines", []);    badLine = smalltalk.send(lines, "_at_", [row]);    badLine = smalltalk.send(smalltalk.send(smalltalk.send(badLine, "_copyFrom_to_", [1, smalltalk.send(col, "__minus", [1])]), "__comma", [" ===>"]), "__comma", [smalltalk.send(badLine, "_copyFrom_to_", [col, smalltalk.send(badLine, "_size", [])])]);    smalltalk.send(lines, "_at_put_", [row, badLine]);    code = smalltalk.send(smalltalk.String || String, "_streamContents_", [function (s) {return smalltalk.send(lines, "_withIndexDo_", [function (l, i) {return smalltalk.send(s, "_nextPutAll_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(i, "_asString", []), "__comma", [": "]), "__comma", [l]), "__comma", [smalltalk.send(smalltalk.String || String, "_lf", [])])]);}]);}]);    $1 = smalltalk.send(smalltalk.send(smalltalk.ParseError || ParseError, "_new", []), "_messageText_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send("Parse error on line ", "__comma", [row]), "__comma", [" column "]), "__comma", [col]), "__comma", [" : "]), "__comma", [message]), "__comma", [" Below is code with line numbers and ===> marker inserted:"]), "__comma", [smalltalk.send(smalltalk.String || String, "_lf", [])]), "__comma", [code])]);    return $1;}}),smalltalk.Smalltalk);smalltalk.addMethod("_pseudoVariableNames",smalltalk.method({selector: "pseudoVariableNames",fn: function () {    var self = this;    return ["self", "super", "nil", "true", "false", "thisContext"];}}),smalltalk.Smalltalk);smalltalk.addMethod("_readJSObject_",smalltalk.method({selector: "readJSObject:",fn: function (anObject) {    var self = this;    return self.readJSObject(anObject);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_removeClass_",smalltalk.method({selector: "removeClass:",fn: function (aClass) {    var self = this;    var $1, $2, $3;    $1 = smalltalk.send(aClass, "_isMetaclass", []);    if (smalltalk.assert($1)) {        smalltalk.send(self, "_error_", [smalltalk.send(smalltalk.send(aClass, "_asString", []), "__comma", [" is a Metaclass and cannot be removed!"])]);    }    smalltalk.send(smalltalk.send(smalltalk.send(aClass, "_methodDictionary", []), "_values", []), "_do_", [function (each) {return smalltalk.send(aClass, "_removeCompiledMethod_", [each]);}]);    smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(aClass, "_class", []), "_methodDictionary", []), "_values", []), "_do_", [function (each) {return smalltalk.send(smalltalk.send(aClass, "_class", []), "_removeCompiledMethod_", [each]);}]);    smalltalk.send(self, "_deleteClass_", [aClass]);    $2 = smalltalk.send(smalltalk.ClassRemoved || ClassRemoved, "_new", []);    smalltalk.send($2, "_theClass_", [aClass]);    $3 = smalltalk.send($2, "_yourself", []);    smalltalk.send(smalltalk.send(smalltalk.SystemAnnouncer || SystemAnnouncer, "_current", []), "_announce_", [$3]);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_removePackage_",smalltalk.method({selector: "removePackage:",fn: function (packageName) {    var self = this;    var pkg;    pkg = smalltalk.send(self, "_packageAt_ifAbsent_", [packageName, function () {return smalltalk.send(self, "_error_", [smalltalk.send("Missing package: ", "__comma", [packageName])]);}]);    smalltalk.send(smalltalk.send(pkg, "_classes", []), "_do_", [function (each) {return smalltalk.send(self, "_removeClass_", [each]);}]);    smalltalk.send(self, "_deletePackage_", [packageName]);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_renamePackage_to_",smalltalk.method({selector: "renamePackage:to:",fn: function (packageName, newName) {    var self = this;    var $1;    var pkg;    pkg = smalltalk.send(self, "_packageAt_ifAbsent_", [packageName, function () {return smalltalk.send(self, "_error_", [smalltalk.send("Missing package: ", "__comma", [packageName])]);}]);    $1 = smalltalk.send(self, "_packageAt_", [newName]);    if (($receiver = $1) == nil || $receiver == undefined) {    } else {        smalltalk.send(self, "_error_", [smalltalk.send("Already exists a package called: ", "__comma", [newName])]);    }    smalltalk.packages[newName] = smalltalk.packages[packageName];    smalltalk.send(pkg, "_name_", [newName]);    smalltalk.send(self, "_deletePackage_", [packageName]);    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_reservedWords",smalltalk.method({selector: "reservedWords",fn: function () {    var self = this;    return self.reservedWords;    return self;}}),smalltalk.Smalltalk);smalltalk.addMethod("_send_to_arguments_",smalltalk.method({selector: "send:to:arguments:",fn: function (aSelector, anObject, aCollection) {    var self = this;    var selector;    selector = smalltalk.send(smalltalk.send(aSelector, "_asString", []), "_asSelector", []);    return self.send(anObject, selector, aCollection);    return self;}}),smalltalk.Smalltalk);smalltalk.Smalltalk.klass.iVarNames = ['current'];smalltalk.addMethod("_current",smalltalk.method({selector: "current",fn: function () {    var self = this;    return smalltalk;    return self;}}),smalltalk.Smalltalk.klass);smalltalk.addClass('UndefinedObject', smalltalk.Object, [], 'Kernel-Objects');smalltalk.addMethod("_asJSON",smalltalk.method({selector: "asJSON",fn: function () {    var self = this;    return null;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_deepCopy",smalltalk.method({selector: "deepCopy",fn: function () {    var self = this;    return self;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_ifNil_",smalltalk.method({selector: "ifNil:",fn: function (aBlock) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_ifNil_ifNotNil_", [aBlock, function () {}]);    return $1;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_ifNil_ifNotNil_",smalltalk.method({selector: "ifNil:ifNotNil:",fn: function (aBlock, anotherBlock) {    var self = this;    var $1;    $1 = smalltalk.send(aBlock, "_value", []);    return $1;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_ifNotNil_",smalltalk.method({selector: "ifNotNil:",fn: function (aBlock) {    var self = this;    return self;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_ifNotNil_ifNil_",smalltalk.method({selector: "ifNotNil:ifNil:",fn: function (aBlock, anotherBlock) {    var self = this;    var $1;    $1 = smalltalk.send(anotherBlock, "_value", []);    return $1;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_isNil",smalltalk.method({selector: "isNil",fn: function () {    var self = this;    return true;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_notNil",smalltalk.method({selector: "notNil",fn: function () {    var self = this;    return false;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_printString",smalltalk.method({selector: "printString",fn: function () {    var self = this;    return "nil";}}),smalltalk.UndefinedObject);smalltalk.addMethod("_shallowCopy",smalltalk.method({selector: "shallowCopy",fn: function () {    var self = this;    return self;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_subclass_instanceVariableNames_",smalltalk.method({selector: "subclass:instanceVariableNames:",fn: function (aString, anotherString) {    var self = this;    var $1;    $1 = smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, anotherString, nil]);    return $1;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_subclass_instanceVariableNames_category_",smalltalk.method({selector: "subclass:instanceVariableNames:category:",fn: function (aString, aString2, aString3) {    var self = this;    var $1;    smalltalk.send(self, "_deprecatedAPI", []);    $1 = smalltalk.send(self, "_subclass_instanceVariableNames_package_", [aString, aString2, aString3]);    return $1;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_subclass_instanceVariableNames_package_",smalltalk.method({selector: "subclass:instanceVariableNames:package:",fn: function (aString, aString2, aString3) {    var self = this;    var $1;    $1 = smalltalk.send(smalltalk.send(smalltalk.ClassBuilder || ClassBuilder, "_new", []), "_superclass_subclass_instanceVariableNames_package_", [self, aString, aString2, aString3]);    return $1;}}),smalltalk.UndefinedObject);smalltalk.addMethod("_new",smalltalk.method({selector: "new",fn: function () {    var self = this;    smalltalk.send(self, "_error_", ["You cannot create new instances of UndefinedObject. Use nil"]);    return self;}}),smalltalk.UndefinedObject.klass);
 |