1
0

Kernel-Collections.deploy.js 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135
  1. smalltalk.addPackage('Kernel-Collections', {});
  2. smalltalk.addClass('Association', smalltalk.Object, ['key', 'value'], 'Kernel-Collections');
  3. smalltalk.addMethod(
  4. "__eq",
  5. smalltalk.method({
  6. selector: "=",
  7. fn: function (anAssociation){
  8. var self=this;
  9. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(anAssociation, "_class", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(smalltalk.send(self, "_key", []), "__eq", [smalltalk.send(anAssociation, "_key", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(self, "_value", []), "__eq", [smalltalk.send(anAssociation, "_value", [])]);})]);})]);
  10. return self;}
  11. }),
  12. smalltalk.Association);
  13. smalltalk.addMethod(
  14. "_key",
  15. smalltalk.method({
  16. selector: "key",
  17. fn: function (){
  18. var self=this;
  19. return self['@key'];
  20. return self;}
  21. }),
  22. smalltalk.Association);
  23. smalltalk.addMethod(
  24. "_key_",
  25. smalltalk.method({
  26. selector: "key:",
  27. fn: function (aKey){
  28. var self=this;
  29. (self['@key']=aKey);
  30. return self;}
  31. }),
  32. smalltalk.Association);
  33. smalltalk.addMethod(
  34. "_storeOn_",
  35. smalltalk.method({
  36. selector: "storeOn:",
  37. fn: function (aStream){
  38. var self=this;
  39. smalltalk.send(self['@key'], "_storeOn_", [aStream]);
  40. smalltalk.send(aStream, "_nextPutAll_", ["->"]);
  41. smalltalk.send(self['@value'], "_storeOn_", [aStream]);
  42. return self;}
  43. }),
  44. smalltalk.Association);
  45. smalltalk.addMethod(
  46. "_value",
  47. smalltalk.method({
  48. selector: "value",
  49. fn: function (){
  50. var self=this;
  51. return self['@value'];
  52. return self;}
  53. }),
  54. smalltalk.Association);
  55. smalltalk.addMethod(
  56. "_value_",
  57. smalltalk.method({
  58. selector: "value:",
  59. fn: function (aValue){
  60. var self=this;
  61. (self['@value']=aValue);
  62. return self;}
  63. }),
  64. smalltalk.Association);
  65. smalltalk.addMethod(
  66. "_key_value_",
  67. smalltalk.method({
  68. selector: "key:value:",
  69. fn: function (aKey, aValue){
  70. var self=this;
  71. return (function($rec){smalltalk.send($rec, "_key_", [aKey]);smalltalk.send($rec, "_value_", [aValue]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  72. return self;}
  73. }),
  74. smalltalk.Association.klass);
  75. smalltalk.addClass('Collection', smalltalk.Object, [], 'Kernel-Collections');
  76. smalltalk.addMethod(
  77. "__comma",
  78. smalltalk.method({
  79. selector: ",",
  80. fn: function (aCollection){
  81. var self=this;
  82. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  83. return self;}
  84. }),
  85. smalltalk.Collection);
  86. smalltalk.addMethod(
  87. "_add_",
  88. smalltalk.method({
  89. selector: "add:",
  90. fn: function (anObject){
  91. var self=this;
  92. smalltalk.send(self, "_subclassResponsibility", []);
  93. return self;}
  94. }),
  95. smalltalk.Collection);
  96. smalltalk.addMethod(
  97. "_addAll_",
  98. smalltalk.method({
  99. selector: "addAll:",
  100. fn: function (aCollection){
  101. var self=this;
  102. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(self, "_add_", [each]);})]);
  103. return aCollection;
  104. return self;}
  105. }),
  106. smalltalk.Collection);
  107. smalltalk.addMethod(
  108. "_asArray",
  109. smalltalk.method({
  110. selector: "asArray",
  111. fn: function (){
  112. var self=this;
  113. return smalltalk.send((smalltalk.Array || Array), "_withAll_", [self]);
  114. return self;}
  115. }),
  116. smalltalk.Collection);
  117. smalltalk.addMethod(
  118. "_asJSON",
  119. smalltalk.method({
  120. selector: "asJSON",
  121. fn: function (){
  122. var self=this;
  123. return smalltalk.send(smalltalk.send(self, "_asArray", []), "_collect_", [(function(each){return smalltalk.send(each, "_asJSON", []);})]);
  124. return self;}
  125. }),
  126. smalltalk.Collection);
  127. smalltalk.addMethod(
  128. "_asOrderedCollection",
  129. smalltalk.method({
  130. selector: "asOrderedCollection",
  131. fn: function (){
  132. var self=this;
  133. return smalltalk.send(self, "_asArray", []);
  134. return self;}
  135. }),
  136. smalltalk.Collection);
  137. smalltalk.addMethod(
  138. "_asSet",
  139. smalltalk.method({
  140. selector: "asSet",
  141. fn: function (){
  142. var self=this;
  143. return smalltalk.send((smalltalk.Set || Set), "_withAll_", [self]);
  144. return self;}
  145. }),
  146. smalltalk.Collection);
  147. smalltalk.addMethod(
  148. "_collect_",
  149. smalltalk.method({
  150. selector: "collect:",
  151. fn: function (aBlock){
  152. var self=this;
  153. var newCollection=nil;
  154. (newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  155. smalltalk.send(self, "_do_", [(function(each){return smalltalk.send(newCollection, "_add_", [smalltalk.send(aBlock, "_value_", [each])]);})]);
  156. return newCollection;
  157. return self;}
  158. }),
  159. smalltalk.Collection);
  160. smalltalk.addMethod(
  161. "_copyWith_",
  162. smalltalk.method({
  163. selector: "copyWith:",
  164. fn: function (anObject){
  165. var self=this;
  166. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  167. return self;}
  168. }),
  169. smalltalk.Collection);
  170. smalltalk.addMethod(
  171. "_copyWithAll_",
  172. smalltalk.method({
  173. selector: "copyWithAll:",
  174. fn: function (aCollection){
  175. var self=this;
  176. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_copy", []));
  177. return self;}
  178. }),
  179. smalltalk.Collection);
  180. smalltalk.addMethod(
  181. "_copyWithoutAll_",
  182. smalltalk.method({
  183. selector: "copyWithoutAll:",
  184. fn: function (aCollection){
  185. var self=this;
  186. return smalltalk.send(self, "_reject_", [(function(each){return smalltalk.send(aCollection, "_includes_", [each]);})]);
  187. return self;}
  188. }),
  189. smalltalk.Collection);
  190. smalltalk.addMethod(
  191. "_detect_",
  192. smalltalk.method({
  193. selector: "detect:",
  194. fn: function (aBlock){
  195. var self=this;
  196. return smalltalk.send(self, "_detect_ifNone_", [aBlock, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  197. return self;}
  198. }),
  199. smalltalk.Collection);
  200. smalltalk.addMethod(
  201. "_detect_ifNone_",
  202. smalltalk.method({
  203. selector: "detect:ifNone:",
  204. fn: function (aBlock, anotherBlock){
  205. var self=this;
  206. for(var i = 0; i < self.length; i++)
  207. if(aBlock(self[i]))
  208. return self[i];
  209. return anotherBlock();
  210. ;
  211. return self;}
  212. }),
  213. smalltalk.Collection);
  214. smalltalk.addMethod(
  215. "_do_",
  216. smalltalk.method({
  217. selector: "do:",
  218. fn: function (aBlock){
  219. var self=this;
  220. for(var i=0;i<self.length;i++){aBlock(self[i]);};
  221. return self;}
  222. }),
  223. smalltalk.Collection);
  224. smalltalk.addMethod(
  225. "_do_separatedBy_",
  226. smalltalk.method({
  227. selector: "do:separatedBy:",
  228. fn: function (aBlock, anotherBlock){
  229. var self=this;
  230. var first=nil;
  231. (first=true);
  232. smalltalk.send(self, "_do_", [(function(each){((($receiver = first).klass === smalltalk.Boolean) ? ($receiver ? (function(){return (first=false);})() : (function(){return smalltalk.send(anotherBlock, "_value", []);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return (first=false);}), (function(){return smalltalk.send(anotherBlock, "_value", []);})]));return smalltalk.send(aBlock, "_value_", [each]);})]);
  233. return self;}
  234. }),
  235. smalltalk.Collection);
  236. smalltalk.addMethod(
  237. "_errorNotFound",
  238. smalltalk.method({
  239. selector: "errorNotFound",
  240. fn: function (){
  241. var self=this;
  242. smalltalk.send(self, "_error_", ["Object is not in the collection"]);
  243. return self;}
  244. }),
  245. smalltalk.Collection);
  246. smalltalk.addMethod(
  247. "_ifEmpty_",
  248. smalltalk.method({
  249. selector: "ifEmpty:",
  250. fn: function (aBlock){
  251. var self=this;
  252. return ((($receiver = smalltalk.send(self, "_isEmpty", [])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(aBlock, "_value", []);})() : (function(){return self;})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return smalltalk.send(aBlock, "_value", []);}), (function(){return self;})]));
  253. return self;}
  254. }),
  255. smalltalk.Collection);
  256. smalltalk.addMethod(
  257. "_ifNotEmpty_",
  258. smalltalk.method({
  259. selector: "ifNotEmpty:",
  260. fn: function (aBlock){
  261. var self=this;
  262. smalltalk.send(smalltalk.send(self, "_notEmpty", []), "_ifTrue_", [aBlock]);
  263. return self;}
  264. }),
  265. smalltalk.Collection);
  266. smalltalk.addMethod(
  267. "_includes_",
  268. smalltalk.method({
  269. selector: "includes:",
  270. fn: function (anObject){
  271. var self=this;
  272. var i = self.length;
  273. while (i--) {
  274. if (smalltalk.send(self[i], "__eq", [anObject])) {return true;}
  275. }
  276. return false
  277. ;
  278. return self;}
  279. }),
  280. smalltalk.Collection);
  281. smalltalk.addMethod(
  282. "_inject_into_",
  283. smalltalk.method({
  284. selector: "inject:into:",
  285. fn: function (anObject, aBlock){
  286. var self=this;
  287. var result=nil;
  288. (result=anObject);
  289. smalltalk.send(self, "_do_", [(function(each){return (result=smalltalk.send(aBlock, "_value_value_", [result, each]));})]);
  290. return result;
  291. return self;}
  292. }),
  293. smalltalk.Collection);
  294. smalltalk.addMethod(
  295. "_isEmpty",
  296. smalltalk.method({
  297. selector: "isEmpty",
  298. fn: function (){
  299. var self=this;
  300. return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [(0)]);
  301. return self;}
  302. }),
  303. smalltalk.Collection);
  304. smalltalk.addMethod(
  305. "_notEmpty",
  306. smalltalk.method({
  307. selector: "notEmpty",
  308. fn: function (){
  309. var self=this;
  310. return smalltalk.send(smalltalk.send(self, "_isEmpty", []), "_not", []);
  311. return self;}
  312. }),
  313. smalltalk.Collection);
  314. smalltalk.addMethod(
  315. "_readStream",
  316. smalltalk.method({
  317. selector: "readStream",
  318. fn: function (){
  319. var self=this;
  320. return smalltalk.send(self, "_stream", []);
  321. return self;}
  322. }),
  323. smalltalk.Collection);
  324. smalltalk.addMethod(
  325. "_reject_",
  326. smalltalk.method({
  327. selector: "reject:",
  328. fn: function (aBlock){
  329. var self=this;
  330. return smalltalk.send(self, "_select_", [(function(each){return smalltalk.send(smalltalk.send(aBlock, "_value_", [each]), "__eq", [false]);})]);
  331. return self;}
  332. }),
  333. smalltalk.Collection);
  334. smalltalk.addMethod(
  335. "_remove_",
  336. smalltalk.method({
  337. selector: "remove:",
  338. fn: function (anObject){
  339. var self=this;
  340. return smalltalk.send(self, "_remove_ifAbsent_", [anObject, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  341. return self;}
  342. }),
  343. smalltalk.Collection);
  344. smalltalk.addMethod(
  345. "_remove_ifAbsent_",
  346. smalltalk.method({
  347. selector: "remove:ifAbsent:",
  348. fn: function (anObject, aBlock){
  349. var self=this;
  350. smalltalk.send(self, "_subclassResponsibility", []);
  351. return self;}
  352. }),
  353. smalltalk.Collection);
  354. smalltalk.addMethod(
  355. "_select_",
  356. smalltalk.method({
  357. selector: "select:",
  358. fn: function (aBlock){
  359. var self=this;
  360. var stream=nil;
  361. (stream=smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "_new", []), "_writeStream", []));
  362. smalltalk.send(self, "_do_", [(function(each){return ((($receiver = smalltalk.send(aBlock, "_value_", [each])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(stream, "_nextPut_", [each]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(stream, "_nextPut_", [each]);})]));})]);
  363. return smalltalk.send(stream, "_contents", []);
  364. return self;}
  365. }),
  366. smalltalk.Collection);
  367. smalltalk.addMethod(
  368. "_size",
  369. smalltalk.method({
  370. selector: "size",
  371. fn: function (){
  372. var self=this;
  373. smalltalk.send(self, "_subclassResponsibility", []);
  374. return self;}
  375. }),
  376. smalltalk.Collection);
  377. smalltalk.addMethod(
  378. "_stream",
  379. smalltalk.method({
  380. selector: "stream",
  381. fn: function (){
  382. var self=this;
  383. return smalltalk.send(smalltalk.send(self, "_streamClass", []), "_on_", [self]);
  384. return self;}
  385. }),
  386. smalltalk.Collection);
  387. smalltalk.addMethod(
  388. "_streamClass",
  389. smalltalk.method({
  390. selector: "streamClass",
  391. fn: function (){
  392. var self=this;
  393. return smalltalk.send(smalltalk.send(self, "_class", []), "_streamClass", []);
  394. return self;}
  395. }),
  396. smalltalk.Collection);
  397. smalltalk.addMethod(
  398. "_writeStream",
  399. smalltalk.method({
  400. selector: "writeStream",
  401. fn: function (){
  402. var self=this;
  403. return smalltalk.send(self, "_stream", []);
  404. return self;}
  405. }),
  406. smalltalk.Collection);
  407. smalltalk.addMethod(
  408. "_new_",
  409. smalltalk.method({
  410. selector: "new:",
  411. fn: function (anInteger){
  412. var self=this;
  413. return smalltalk.send(self, "_new", []);
  414. return self;}
  415. }),
  416. smalltalk.Collection.klass);
  417. smalltalk.addMethod(
  418. "_streamClass",
  419. smalltalk.method({
  420. selector: "streamClass",
  421. fn: function (){
  422. var self=this;
  423. return (smalltalk.Stream || Stream);
  424. return self;}
  425. }),
  426. smalltalk.Collection.klass);
  427. smalltalk.addMethod(
  428. "_with_",
  429. smalltalk.method({
  430. selector: "with:",
  431. fn: function (anObject){
  432. var self=this;
  433. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  434. return self;}
  435. }),
  436. smalltalk.Collection.klass);
  437. smalltalk.addMethod(
  438. "_with_with_",
  439. smalltalk.method({
  440. selector: "with:with:",
  441. fn: function (anObject, anotherObject){
  442. var self=this;
  443. return (function($rec){smalltalk.send($rec, "_add_", [anObject]);smalltalk.send($rec, "_add_", [anotherObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  444. return self;}
  445. }),
  446. smalltalk.Collection.klass);
  447. smalltalk.addMethod(
  448. "_with_with_with_",
  449. smalltalk.method({
  450. selector: "with:with:with:",
  451. fn: function (firstObject, secondObject, thirdObject){
  452. var self=this;
  453. return (function($rec){smalltalk.send($rec, "_add_", [firstObject]);smalltalk.send($rec, "_add_", [secondObject]);smalltalk.send($rec, "_add_", [thirdObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  454. return self;}
  455. }),
  456. smalltalk.Collection.klass);
  457. smalltalk.addMethod(
  458. "_withAll_",
  459. smalltalk.method({
  460. selector: "withAll:",
  461. fn: function (aCollection){
  462. var self=this;
  463. return (function($rec){smalltalk.send($rec, "_addAll_", [aCollection]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  464. return self;}
  465. }),
  466. smalltalk.Collection.klass);
  467. smalltalk.addClass('HashedCollection', smalltalk.Collection, [], 'Kernel-Collections');
  468. smalltalk.addMethod(
  469. "__comma",
  470. smalltalk.method({
  471. selector: ",",
  472. fn: function (aCollection){
  473. var self=this;
  474. smalltalk.send(self, "_shouldNotImplement", []);
  475. return self;}
  476. }),
  477. smalltalk.HashedCollection);
  478. smalltalk.addMethod(
  479. "__eq",
  480. smalltalk.method({
  481. selector: "=",
  482. fn: function (aHashedCollection){
  483. var self=this;
  484. var $early={};
  485. try{((($receiver = smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(aHashedCollection, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw $early=[false]})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw $early=[false]})();})]));
  486. ((($receiver = smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [smalltalk.send(aHashedCollection, "_size", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw $early=[false]})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw $early=[false]})();})]));
  487. return smalltalk.send(smalltalk.send(self, "_associations", []), "__eq", [smalltalk.send(aHashedCollection, "_associations", [])]);
  488. return self;
  489. } catch(e) {if(e===$early)return e[0]; throw e}}
  490. }),
  491. smalltalk.HashedCollection);
  492. smalltalk.addMethod(
  493. "_add_",
  494. smalltalk.method({
  495. selector: "add:",
  496. fn: function (anAssociation){
  497. var self=this;
  498. smalltalk.send(self, "_at_put_", [smalltalk.send(anAssociation, "_key", []), smalltalk.send(anAssociation, "_value", [])]);
  499. return self;}
  500. }),
  501. smalltalk.HashedCollection);
  502. smalltalk.addMethod(
  503. "_addAll_",
  504. smalltalk.method({
  505. selector: "addAll:",
  506. fn: function (aHashedCollection){
  507. var self=this;
  508. smalltalk.send(self, "_addAll_", [smalltalk.send(aHashedCollection, "_associations", [])], smalltalk.HashedCollection.superclass || nil);
  509. return aHashedCollection;
  510. return self;}
  511. }),
  512. smalltalk.HashedCollection);
  513. smalltalk.addMethod(
  514. "_asDictionary",
  515. smalltalk.method({
  516. selector: "asDictionary",
  517. fn: function (){
  518. var self=this;
  519. return smalltalk.send((smalltalk.Dictionary || Dictionary), "_fromPairs_", [smalltalk.send(self, "_associations", [])]);
  520. return self;}
  521. }),
  522. smalltalk.HashedCollection);
  523. smalltalk.addMethod(
  524. "_asJSON",
  525. smalltalk.method({
  526. selector: "asJSON",
  527. fn: function (){
  528. var self=this;
  529. var c=nil;
  530. (c=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  531. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(c, "_at_put_", [key, smalltalk.send(value, "_asJSON", [])]);})]);
  532. return c;
  533. return self;}
  534. }),
  535. smalltalk.HashedCollection);
  536. smalltalk.addMethod(
  537. "_associations",
  538. smalltalk.method({
  539. selector: "associations",
  540. fn: function (){
  541. var self=this;
  542. var associations=nil;
  543. (associations=[]);
  544. smalltalk.send(smalltalk.send(self, "_keys", []), "_do_", [(function(each){return smalltalk.send(associations, "_add_", [smalltalk.send((smalltalk.Association || Association), "_key_value_", [each, smalltalk.send(self, "_at_", [each])])]);})]);
  545. return associations;
  546. return self;}
  547. }),
  548. smalltalk.HashedCollection);
  549. smalltalk.addMethod(
  550. "_associationsDo_",
  551. smalltalk.method({
  552. selector: "associationsDo:",
  553. fn: function (aBlock){
  554. var self=this;
  555. smalltalk.send(smalltalk.send(self, "_associations", []), "_do_", [aBlock]);
  556. return self;}
  557. }),
  558. smalltalk.HashedCollection);
  559. smalltalk.addMethod(
  560. "_at_",
  561. smalltalk.method({
  562. selector: "at:",
  563. fn: function (aKey){
  564. var self=this;
  565. return smalltalk.send(self, "_at_ifAbsent_", [aKey, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  566. return self;}
  567. }),
  568. smalltalk.HashedCollection);
  569. smalltalk.addMethod(
  570. "_at_ifAbsent_",
  571. smalltalk.method({
  572. selector: "at:ifAbsent:",
  573. fn: function (aKey, aBlock){
  574. var self=this;
  575. return smalltalk.send(smalltalk.send(self, "_includesKey_", [aKey]), "_ifTrue_ifFalse_", [(function(){return smalltalk.send(self, "_basicAt_", [aKey]);}), aBlock]);
  576. return self;}
  577. }),
  578. smalltalk.HashedCollection);
  579. smalltalk.addMethod(
  580. "_at_ifAbsentPut_",
  581. smalltalk.method({
  582. selector: "at:ifAbsentPut:",
  583. fn: function (aKey, aBlock){
  584. var self=this;
  585. return smalltalk.send(self, "_at_ifAbsent_", [aKey, (function(){return smalltalk.send(self, "_at_put_", [aKey, smalltalk.send(aBlock, "_value", [])]);})]);
  586. return self;}
  587. }),
  588. smalltalk.HashedCollection);
  589. smalltalk.addMethod(
  590. "_at_ifPresent_",
  591. smalltalk.method({
  592. selector: "at:ifPresent:",
  593. fn: function (aKey, aBlock){
  594. var self=this;
  595. return (($receiver = smalltalk.send(self, "_basicAt_", [aKey])) != nil && $receiver != undefined) ? (function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_at_", [aKey])]);})() : nil;
  596. return self;}
  597. }),
  598. smalltalk.HashedCollection);
  599. smalltalk.addMethod(
  600. "_at_ifPresent_ifAbsent_",
  601. smalltalk.method({
  602. selector: "at:ifPresent:ifAbsent:",
  603. fn: function (aKey, aBlock, anotherBlock){
  604. var self=this;
  605. return smalltalk.send(smalltalk.send(self, "_basicAt_", [aKey]), "_ifNil_ifNotNil_", [anotherBlock, (function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_at_", [aKey])]);})]);
  606. return self;}
  607. }),
  608. smalltalk.HashedCollection);
  609. smalltalk.addMethod(
  610. "_at_put_",
  611. smalltalk.method({
  612. selector: "at:put:",
  613. fn: function (aKey, aValue){
  614. var self=this;
  615. return smalltalk.send(self, "_basicAt_put_", [aKey, aValue]);
  616. return self;}
  617. }),
  618. smalltalk.HashedCollection);
  619. smalltalk.addMethod(
  620. "_collect_",
  621. smalltalk.method({
  622. selector: "collect:",
  623. fn: function (aBlock){
  624. var self=this;
  625. var newDict=nil;
  626. (newDict=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  627. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return smalltalk.send(newDict, "_at_put_", [key, smalltalk.send(aBlock, "_value_", [value])]);})]);
  628. return newDict;
  629. return self;}
  630. }),
  631. smalltalk.HashedCollection);
  632. smalltalk.addMethod(
  633. "_copyFrom_to_",
  634. smalltalk.method({
  635. selector: "copyFrom:to:",
  636. fn: function (anIndex, anotherIndex){
  637. var self=this;
  638. smalltalk.send(self, "_shouldNotImplement", []);
  639. return self;}
  640. }),
  641. smalltalk.HashedCollection);
  642. smalltalk.addMethod(
  643. "_deepCopy",
  644. smalltalk.method({
  645. selector: "deepCopy",
  646. fn: function (){
  647. var self=this;
  648. var copy=nil;
  649. (copy=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  650. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(copy, "_at_put_", [smalltalk.send(each, "_key", []), smalltalk.send(smalltalk.send(each, "_value", []), "_deepCopy", [])]);})]);
  651. return copy;
  652. return self;}
  653. }),
  654. smalltalk.HashedCollection);
  655. smalltalk.addMethod(
  656. "_detect_ifNone_",
  657. smalltalk.method({
  658. selector: "detect:ifNone:",
  659. fn: function (aBlock, anotherBlock){
  660. var self=this;
  661. return smalltalk.send(smalltalk.send(self, "_values", []), "_detect_ifNone_", [aBlock, anotherBlock]);
  662. return self;}
  663. }),
  664. smalltalk.HashedCollection);
  665. smalltalk.addMethod(
  666. "_do_",
  667. smalltalk.method({
  668. selector: "do:",
  669. fn: function (aBlock){
  670. var self=this;
  671. smalltalk.send(smalltalk.send(self, "_values", []), "_do_", [aBlock]);
  672. return self;}
  673. }),
  674. smalltalk.HashedCollection);
  675. smalltalk.addMethod(
  676. "_includes_",
  677. smalltalk.method({
  678. selector: "includes:",
  679. fn: function (anObject){
  680. var self=this;
  681. return smalltalk.send(smalltalk.send(self, "_values", []), "_includes_", [anObject]);
  682. return self;}
  683. }),
  684. smalltalk.HashedCollection);
  685. smalltalk.addMethod(
  686. "_includesKey_",
  687. smalltalk.method({
  688. selector: "includesKey:",
  689. fn: function (aKey){
  690. var self=this;
  691. return self.hasOwnProperty(aKey);
  692. return self;}
  693. }),
  694. smalltalk.HashedCollection);
  695. smalltalk.addMethod(
  696. "_keys",
  697. smalltalk.method({
  698. selector: "keys",
  699. fn: function (){
  700. var self=this;
  701. if ('function'===typeof Object.keys) return Object.keys(self);
  702. var keys = [];
  703. for(var i in self) {
  704. if(self.hasOwnProperty(i)) {
  705. keys.push(i);
  706. }
  707. };
  708. return keys;
  709. ;
  710. return self;}
  711. }),
  712. smalltalk.HashedCollection);
  713. smalltalk.addMethod(
  714. "_keysAndValuesDo_",
  715. smalltalk.method({
  716. selector: "keysAndValuesDo:",
  717. fn: function (aBlock){
  718. var self=this;
  719. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(aBlock, "_value_value_", [smalltalk.send(each, "_key", []), smalltalk.send(each, "_value", [])]);})]);
  720. return self;}
  721. }),
  722. smalltalk.HashedCollection);
  723. smalltalk.addMethod(
  724. "_printString",
  725. smalltalk.method({
  726. selector: "printString",
  727. fn: function (){
  728. var self=this;
  729. return smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(aStream){(function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(self, "_printString", [], smalltalk.HashedCollection.superclass || nil)]);return smalltalk.send($rec, "_nextPutAll_", ["("]);})(aStream);smalltalk.send(smalltalk.send(self, "_associations", []), "_do_separatedBy_", [(function(anAssociation){return (function($rec){smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(anAssociation, "_key", []), "_printString", [])]);smalltalk.send($rec, "_nextPutAll_", [" -> "]);return smalltalk.send($rec, "_nextPutAll_", [smalltalk.send(smalltalk.send(anAssociation, "_value", []), "_printString", [])]);})(aStream);}), (function(){return smalltalk.send(aStream, "_nextPutAll_", [" , "]);})]);return smalltalk.send(aStream, "_nextPutAll_", [")"]);})]);
  730. return self;}
  731. }),
  732. smalltalk.HashedCollection);
  733. smalltalk.addMethod(
  734. "_remove_ifAbsent_",
  735. smalltalk.method({
  736. selector: "remove:ifAbsent:",
  737. fn: function (aKey, aBlock){
  738. var self=this;
  739. return smalltalk.send(self, "_removeKey_ifAbsent_", [aKey, aBlock]);
  740. return self;}
  741. }),
  742. smalltalk.HashedCollection);
  743. smalltalk.addMethod(
  744. "_removeKey_",
  745. smalltalk.method({
  746. selector: "removeKey:",
  747. fn: function (aKey){
  748. var self=this;
  749. return smalltalk.send(self, "_remove_", [aKey]);
  750. return self;}
  751. }),
  752. smalltalk.HashedCollection);
  753. smalltalk.addMethod(
  754. "_removeKey_ifAbsent_",
  755. smalltalk.method({
  756. selector: "removeKey:ifAbsent:",
  757. fn: function (aKey, aBlock){
  758. var self=this;
  759. return ((($receiver = smalltalk.send(self, "_includesKey_", [aKey])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(aBlock, "_value", []);})() : (function(){return smalltalk.send(self, "_basicDelete_", [aKey]);})()) : smalltalk.send($receiver, "_ifFalse_ifTrue_", [(function(){return smalltalk.send(aBlock, "_value", []);}), (function(){return smalltalk.send(self, "_basicDelete_", [aKey]);})]));
  760. return self;}
  761. }),
  762. smalltalk.HashedCollection);
  763. smalltalk.addMethod(
  764. "_select_",
  765. smalltalk.method({
  766. selector: "select:",
  767. fn: function (aBlock){
  768. var self=this;
  769. var newDict=nil;
  770. (newDict=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  771. smalltalk.send(self, "_keysAndValuesDo_", [(function(key, value){return ((($receiver = smalltalk.send(aBlock, "_value_", [value])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(newDict, "_at_put_", [key, value]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(newDict, "_at_put_", [key, value]);})]));})]);
  772. return newDict;
  773. return self;}
  774. }),
  775. smalltalk.HashedCollection);
  776. smalltalk.addMethod(
  777. "_shallowCopy",
  778. smalltalk.method({
  779. selector: "shallowCopy",
  780. fn: function (){
  781. var self=this;
  782. var copy=nil;
  783. (copy=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  784. smalltalk.send(self, "_associationsDo_", [(function(each){return smalltalk.send(copy, "_at_put_", [smalltalk.send(each, "_key", []), smalltalk.send(each, "_value", [])]);})]);
  785. return copy;
  786. return self;}
  787. }),
  788. smalltalk.HashedCollection);
  789. smalltalk.addMethod(
  790. "_size",
  791. smalltalk.method({
  792. selector: "size",
  793. fn: function (){
  794. var self=this;
  795. return smalltalk.send(smalltalk.send(self, "_keys", []), "_size", []);
  796. return self;}
  797. }),
  798. smalltalk.HashedCollection);
  799. smalltalk.addMethod(
  800. "_storeOn_",
  801. smalltalk.method({
  802. selector: "storeOn:",
  803. fn: function (aStream){
  804. var self=this;
  805. smalltalk.send(aStream, "_nextPutAll_", ["#{"]);
  806. smalltalk.send(smalltalk.send(self, "_associations", []), "_do_separatedBy_", [(function(each){return smalltalk.send(each, "_storeOn_", [aStream]);}), (function(){return smalltalk.send(aStream, "_nextPutAll_", [". "]);})]);
  807. smalltalk.send(aStream, "_nextPutAll_", ["}"]);
  808. return self;}
  809. }),
  810. smalltalk.HashedCollection);
  811. smalltalk.addMethod(
  812. "_values",
  813. smalltalk.method({
  814. selector: "values",
  815. fn: function (){
  816. var self=this;
  817. return smalltalk.send(smalltalk.send(self, "_keys", []), "_collect_", [(function(each){return smalltalk.send(self, "_at_", [each]);})]);
  818. return self;}
  819. }),
  820. smalltalk.HashedCollection);
  821. smalltalk.addMethod(
  822. "_fromPairs_",
  823. smalltalk.method({
  824. selector: "fromPairs:",
  825. fn: function (aCollection){
  826. var self=this;
  827. var dict=nil;
  828. (dict=smalltalk.send(self, "_new", []));
  829. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(dict, "_add_", [each]);})]);
  830. return dict;
  831. return self;}
  832. }),
  833. smalltalk.HashedCollection.klass);
  834. smalltalk.addClass('Dictionary', smalltalk.HashedCollection, ['keys', 'values'], 'Kernel-Collections');
  835. smalltalk.addMethod(
  836. "_asHashedCollection",
  837. smalltalk.method({
  838. selector: "asHashedCollection",
  839. fn: function (){
  840. var self=this;
  841. return smalltalk.send((smalltalk.HashedCollection || HashedCollection), "_fromPairs_", [smalltalk.send(self, "_associations", [])]);
  842. return self;}
  843. }),
  844. smalltalk.Dictionary);
  845. smalltalk.addMethod(
  846. "_asJSON",
  847. smalltalk.method({
  848. selector: "asJSON",
  849. fn: function (){
  850. var self=this;
  851. return smalltalk.send(smalltalk.send(self, "_asHashedCollection", []), "_asJSON", []);
  852. return self;}
  853. }),
  854. smalltalk.Dictionary);
  855. smalltalk.addMethod(
  856. "_at_ifAbsent_",
  857. smalltalk.method({
  858. selector: "at:ifAbsent:",
  859. fn: function (aKey, aBlock){
  860. var self=this;
  861. var index;
  862. for(var i=0;i<self['@keys'].length;i++){
  863. if(self['@keys'][i].__eq(aKey)) {index = i;}
  864. };
  865. if(typeof index === 'undefined') {
  866. return aBlock();
  867. } else {
  868. return self['@values'][index];
  869. }
  870. ;
  871. return self;}
  872. }),
  873. smalltalk.Dictionary);
  874. smalltalk.addMethod(
  875. "_at_put_",
  876. smalltalk.method({
  877. selector: "at:put:",
  878. fn: function (aKey, aValue){
  879. var self=this;
  880. var index = self['@keys'].indexOf(aKey);
  881. if(index === -1) {
  882. self['@values'].push(aValue);
  883. self['@keys'].push(aKey);
  884. } else {
  885. self['@values'][index] = aValue;
  886. };
  887. return aValue;
  888. ;
  889. return self;}
  890. }),
  891. smalltalk.Dictionary);
  892. smalltalk.addMethod(
  893. "_includesKey_",
  894. smalltalk.method({
  895. selector: "includesKey:",
  896. fn: function (aKey){
  897. var self=this;
  898. return smalltalk.send(self['@keys'], "_includes_", [aKey]);
  899. return self;}
  900. }),
  901. smalltalk.Dictionary);
  902. smalltalk.addMethod(
  903. "_initialize",
  904. smalltalk.method({
  905. selector: "initialize",
  906. fn: function (){
  907. var self=this;
  908. smalltalk.send(self, "_initialize", [], smalltalk.Dictionary.superclass || nil);
  909. (self['@keys']=[]);
  910. (self['@values']=[]);
  911. return self;}
  912. }),
  913. smalltalk.Dictionary);
  914. smalltalk.addMethod(
  915. "_keys",
  916. smalltalk.method({
  917. selector: "keys",
  918. fn: function (){
  919. var self=this;
  920. return smalltalk.send(self['@keys'], "_copy", []);
  921. return self;}
  922. }),
  923. smalltalk.Dictionary);
  924. smalltalk.addMethod(
  925. "_removeKey_ifAbsent_",
  926. smalltalk.method({
  927. selector: "removeKey:ifAbsent:",
  928. fn: function (aKey, aBlock){
  929. var self=this;
  930. var index = self['@keys'].indexOf(aKey);
  931. if(index === -1) {
  932. return aBlock()
  933. } else {
  934. var value;
  935. self['@keys'].splice(index, 1);
  936. value = self['@values'].splice(index, 1);
  937. return value[0];
  938. };
  939. ;
  940. return self;}
  941. }),
  942. smalltalk.Dictionary);
  943. smalltalk.addMethod(
  944. "_values",
  945. smalltalk.method({
  946. selector: "values",
  947. fn: function (){
  948. var self=this;
  949. return smalltalk.send(self['@values'], "_copy", []);
  950. return self;}
  951. }),
  952. smalltalk.Dictionary);
  953. smalltalk.addClass('SequenceableCollection', smalltalk.Collection, [], 'Kernel-Collections');
  954. smalltalk.addMethod(
  955. "__eq",
  956. smalltalk.method({
  957. selector: "=",
  958. fn: function (aCollection){
  959. var self=this;
  960. var $early={};
  961. try{((($receiver = smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(aCollection, "_class", [])]), "_and_", [(function(){return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [smalltalk.send(aCollection, "_size", [])]);})])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw $early=[false]})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw $early=[false]})();})]));
  962. smalltalk.send(self, "_withIndexDo_", [(function(each, i){return ((($receiver = smalltalk.send(smalltalk.send(aCollection, "_at_", [i]), "__eq", [each])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw $early=[false]})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw $early=[false]})();})]));})]);
  963. return true;
  964. return self;
  965. } catch(e) {if(e===$early)return e[0]; throw e}}
  966. }),
  967. smalltalk.SequenceableCollection);
  968. smalltalk.addMethod(
  969. "_addLast_",
  970. smalltalk.method({
  971. selector: "addLast:",
  972. fn: function (anObject){
  973. var self=this;
  974. smalltalk.send(self, "_add_", [anObject]);
  975. return self;}
  976. }),
  977. smalltalk.SequenceableCollection);
  978. smalltalk.addMethod(
  979. "_allButFirst",
  980. smalltalk.method({
  981. selector: "allButFirst",
  982. fn: function (){
  983. var self=this;
  984. return smalltalk.send(self, "_copyFrom_to_", [(2), smalltalk.send(self, "_size", [])]);
  985. return self;}
  986. }),
  987. smalltalk.SequenceableCollection);
  988. smalltalk.addMethod(
  989. "_allButLast",
  990. smalltalk.method({
  991. selector: "allButLast",
  992. fn: function (){
  993. var self=this;
  994. return smalltalk.send(self, "_copyFrom_to_", [(1), ((($receiver = smalltalk.send(self, "_size", [])).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)]))]);
  995. return self;}
  996. }),
  997. smalltalk.SequenceableCollection);
  998. smalltalk.addMethod(
  999. "_at_",
  1000. smalltalk.method({
  1001. selector: "at:",
  1002. fn: function (anIndex){
  1003. var self=this;
  1004. return smalltalk.send(self, "_at_ifAbsent_", [anIndex, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  1005. return self;}
  1006. }),
  1007. smalltalk.SequenceableCollection);
  1008. smalltalk.addMethod(
  1009. "_at_ifAbsent_",
  1010. smalltalk.method({
  1011. selector: "at:ifAbsent:",
  1012. fn: function (anIndex, aBlock){
  1013. var self=this;
  1014. smalltalk.send(self, "_subclassResponsibility", []);
  1015. return self;}
  1016. }),
  1017. smalltalk.SequenceableCollection);
  1018. smalltalk.addMethod(
  1019. "_at_put_",
  1020. smalltalk.method({
  1021. selector: "at:put:",
  1022. fn: function (anIndex, anObject){
  1023. var self=this;
  1024. smalltalk.send(self, "_subclassResponsibility", []);
  1025. return self;}
  1026. }),
  1027. smalltalk.SequenceableCollection);
  1028. smalltalk.addMethod(
  1029. "_atRandom",
  1030. smalltalk.method({
  1031. selector: "atRandom",
  1032. fn: function (){
  1033. var self=this;
  1034. return smalltalk.send(self, "_at_", [smalltalk.send(smalltalk.send(self, "_size", []), "_atRandom", [])]);
  1035. return self;}
  1036. }),
  1037. smalltalk.SequenceableCollection);
  1038. smalltalk.addMethod(
  1039. "_copyFrom_to_",
  1040. smalltalk.method({
  1041. selector: "copyFrom:to:",
  1042. fn: function (anIndex, anotherIndex){
  1043. var self=this;
  1044. var range=nil;
  1045. var newCollection=nil;
  1046. (range=smalltalk.send(anIndex, "_to_", [anotherIndex]));
  1047. (newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new_", [smalltalk.send(range, "_size", [])]));
  1048. smalltalk.send(range, "_withIndexDo_", [(function(each, i){return smalltalk.send(newCollection, "_at_put_", [i, smalltalk.send(self, "_at_", [each])]);})]);
  1049. return newCollection;
  1050. return self;}
  1051. }),
  1052. smalltalk.SequenceableCollection);
  1053. smalltalk.addMethod(
  1054. "_deepCopy",
  1055. smalltalk.method({
  1056. selector: "deepCopy",
  1057. fn: function (){
  1058. var self=this;
  1059. var newCollection=nil;
  1060. (newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new_", [smalltalk.send(self, "_size", [])]));
  1061. smalltalk.send(self, "_withIndexDo_", [(function(each, index){return smalltalk.send(newCollection, "_at_put_", [index, smalltalk.send(each, "_deepCopy", [])]);})]);
  1062. return newCollection;
  1063. return self;}
  1064. }),
  1065. smalltalk.SequenceableCollection);
  1066. smalltalk.addMethod(
  1067. "_first",
  1068. smalltalk.method({
  1069. selector: "first",
  1070. fn: function (){
  1071. var self=this;
  1072. return smalltalk.send(self, "_at_", [(1)]);
  1073. return self;}
  1074. }),
  1075. smalltalk.SequenceableCollection);
  1076. smalltalk.addMethod(
  1077. "_first_",
  1078. smalltalk.method({
  1079. selector: "first:",
  1080. fn: function (n){
  1081. var self=this;
  1082. return smalltalk.send(self, "_copyFrom_to_", [(1), n]);
  1083. return self;}
  1084. }),
  1085. smalltalk.SequenceableCollection);
  1086. smalltalk.addMethod(
  1087. "_fourth",
  1088. smalltalk.method({
  1089. selector: "fourth",
  1090. fn: function (){
  1091. var self=this;
  1092. return smalltalk.send(self, "_at_", [(4)]);
  1093. return self;}
  1094. }),
  1095. smalltalk.SequenceableCollection);
  1096. smalltalk.addMethod(
  1097. "_indexOf_",
  1098. smalltalk.method({
  1099. selector: "indexOf:",
  1100. fn: function (anObject){
  1101. var self=this;
  1102. return smalltalk.send(self, "_indexOf_ifAbsent_", [anObject, (function(){return smalltalk.send(self, "_errorNotFound", []);})]);
  1103. return self;}
  1104. }),
  1105. smalltalk.SequenceableCollection);
  1106. smalltalk.addMethod(
  1107. "_indexOf_ifAbsent_",
  1108. smalltalk.method({
  1109. selector: "indexOf:ifAbsent:",
  1110. fn: function (anObject, aBlock){
  1111. var self=this;
  1112. for(var i=0;i<self.length;i++){
  1113. if(self[i].__eq(anObject)) {return i+1}
  1114. }
  1115. return aBlock();
  1116. ;
  1117. return self;}
  1118. }),
  1119. smalltalk.SequenceableCollection);
  1120. smalltalk.addMethod(
  1121. "_indexOf_startingAt_",
  1122. smalltalk.method({
  1123. selector: "indexOf:startingAt:",
  1124. fn: function (anObject, start){
  1125. var self=this;
  1126. return smalltalk.send(self, "_indexOf_startingAt_ifAbsent_", [anObject, start, (function(){return (0);})]);
  1127. return self;}
  1128. }),
  1129. smalltalk.SequenceableCollection);
  1130. smalltalk.addMethod(
  1131. "_indexOf_startingAt_ifAbsent_",
  1132. smalltalk.method({
  1133. selector: "indexOf:startingAt:ifAbsent:",
  1134. fn: function (anObject, start, aBlock){
  1135. var self=this;
  1136. for(var i=start-1;i<self.length;i++){
  1137. if(self[i].__eq(anObject)) {return i+1}
  1138. }
  1139. return aBlock();
  1140. ;
  1141. return self;}
  1142. }),
  1143. smalltalk.SequenceableCollection);
  1144. smalltalk.addMethod(
  1145. "_last",
  1146. smalltalk.method({
  1147. selector: "last",
  1148. fn: function (){
  1149. var self=this;
  1150. return smalltalk.send(self, "_at_", [smalltalk.send(self, "_size", [])]);
  1151. return self;}
  1152. }),
  1153. smalltalk.SequenceableCollection);
  1154. smalltalk.addMethod(
  1155. "_printString",
  1156. smalltalk.method({
  1157. selector: "printString",
  1158. fn: function (){
  1159. var self=this;
  1160. var str=nil;
  1161. (str=smalltalk.send("", "_writeStream", []));
  1162. smalltalk.send(str, "_nextPutAll_", [smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.SequenceableCollection.superclass || nil), "__comma", [" ("])]);
  1163. smalltalk.send(self, "_do_separatedBy_", [(function(each){return smalltalk.send(str, "_nextPutAll_", [smalltalk.send(each, "_printString", [])]);}), (function(){return smalltalk.send(str, "_nextPutAll_", [" "]);})]);
  1164. smalltalk.send(str, "_nextPutAll_", [")"]);
  1165. return smalltalk.send(str, "_contents", []);
  1166. return self;}
  1167. }),
  1168. smalltalk.SequenceableCollection);
  1169. smalltalk.addMethod(
  1170. "_removeLast",
  1171. smalltalk.method({
  1172. selector: "removeLast",
  1173. fn: function (){
  1174. var self=this;
  1175. smalltalk.send(self, "_remove_", [smalltalk.send(self, "_last", [])]);
  1176. return self;}
  1177. }),
  1178. smalltalk.SequenceableCollection);
  1179. smalltalk.addMethod(
  1180. "_reversed",
  1181. smalltalk.method({
  1182. selector: "reversed",
  1183. fn: function (){
  1184. var self=this;
  1185. smalltalk.send(self, "_subclassResponsibility", []);
  1186. return self;}
  1187. }),
  1188. smalltalk.SequenceableCollection);
  1189. smalltalk.addMethod(
  1190. "_second",
  1191. smalltalk.method({
  1192. selector: "second",
  1193. fn: function (){
  1194. var self=this;
  1195. return smalltalk.send(self, "_at_", [(2)]);
  1196. return self;}
  1197. }),
  1198. smalltalk.SequenceableCollection);
  1199. smalltalk.addMethod(
  1200. "_shallowCopy",
  1201. smalltalk.method({
  1202. selector: "shallowCopy",
  1203. fn: function (){
  1204. var self=this;
  1205. var newCollection=nil;
  1206. (newCollection=smalltalk.send(smalltalk.send(self, "_class", []), "_new_", [smalltalk.send(self, "_size", [])]));
  1207. smalltalk.send(self, "_withIndexDo_", [(function(each, index){return smalltalk.send(newCollection, "_at_put_", [index, each]);})]);
  1208. return newCollection;
  1209. return self;}
  1210. }),
  1211. smalltalk.SequenceableCollection);
  1212. smalltalk.addMethod(
  1213. "_third",
  1214. smalltalk.method({
  1215. selector: "third",
  1216. fn: function (){
  1217. var self=this;
  1218. return smalltalk.send(self, "_at_", [(3)]);
  1219. return self;}
  1220. }),
  1221. smalltalk.SequenceableCollection);
  1222. smalltalk.addMethod(
  1223. "_withIndexDo_",
  1224. smalltalk.method({
  1225. selector: "withIndexDo:",
  1226. fn: function (aBlock){
  1227. var self=this;
  1228. for(var i=0;i<self.length;i++){aBlock(self[i], i+1);};
  1229. return self;}
  1230. }),
  1231. smalltalk.SequenceableCollection);
  1232. smalltalk.addClass('Array', smalltalk.SequenceableCollection, [], 'Kernel-Collections');
  1233. smalltalk.addMethod(
  1234. "_add_",
  1235. smalltalk.method({
  1236. selector: "add:",
  1237. fn: function (anObject){
  1238. var self=this;
  1239. self.push(anObject); return anObject;;
  1240. return self;}
  1241. }),
  1242. smalltalk.Array);
  1243. smalltalk.addMethod(
  1244. "_asJavascript",
  1245. smalltalk.method({
  1246. selector: "asJavascript",
  1247. fn: function (){
  1248. var self=this;
  1249. return smalltalk.send(smalltalk.send("[", "__comma", [smalltalk.send(smalltalk.send(self, "_collect_", [(function(each){return smalltalk.send(each, "_asJavascript", []);})]), "_join_", [", "])]), "__comma", ["]"]);
  1250. return self;}
  1251. }),
  1252. smalltalk.Array);
  1253. smalltalk.addMethod(
  1254. "_at_ifAbsent_",
  1255. smalltalk.method({
  1256. selector: "at:ifAbsent:",
  1257. fn: function (anIndex, aBlock){
  1258. var self=this;
  1259. if((anIndex < 1) || (self.length < anIndex)) {return aBlock()};
  1260. return self[anIndex - 1];
  1261. ;
  1262. return self;}
  1263. }),
  1264. smalltalk.Array);
  1265. smalltalk.addMethod(
  1266. "_at_put_",
  1267. smalltalk.method({
  1268. selector: "at:put:",
  1269. fn: function (anIndex, anObject){
  1270. var self=this;
  1271. return self[anIndex - 1] = anObject;
  1272. return self;}
  1273. }),
  1274. smalltalk.Array);
  1275. smalltalk.addMethod(
  1276. "_join_",
  1277. smalltalk.method({
  1278. selector: "join:",
  1279. fn: function (aString){
  1280. var self=this;
  1281. return self.join(aString);
  1282. return self;}
  1283. }),
  1284. smalltalk.Array);
  1285. smalltalk.addMethod(
  1286. "_remove_",
  1287. smalltalk.method({
  1288. selector: "remove:",
  1289. fn: function (anObject){
  1290. var self=this;
  1291. for(var i=0;i<self.length;i++) {
  1292. if(self[i] == anObject) {
  1293. self.splice(i,1);
  1294. break;
  1295. }
  1296. }
  1297. ;
  1298. return self;}
  1299. }),
  1300. smalltalk.Array);
  1301. smalltalk.addMethod(
  1302. "_removeFrom_to_",
  1303. smalltalk.method({
  1304. selector: "removeFrom:to:",
  1305. fn: function (aNumber, anotherNumber){
  1306. var self=this;
  1307. self.splice(aNumber - 1,anotherNumber - 1);
  1308. return self;}
  1309. }),
  1310. smalltalk.Array);
  1311. smalltalk.addMethod(
  1312. "_reversed",
  1313. smalltalk.method({
  1314. selector: "reversed",
  1315. fn: function (){
  1316. var self=this;
  1317. return self._copy().reverse();
  1318. return self;}
  1319. }),
  1320. smalltalk.Array);
  1321. smalltalk.addMethod(
  1322. "_size",
  1323. smalltalk.method({
  1324. selector: "size",
  1325. fn: function (){
  1326. var self=this;
  1327. return self.length;
  1328. return self;}
  1329. }),
  1330. smalltalk.Array);
  1331. smalltalk.addMethod(
  1332. "_sort",
  1333. smalltalk.method({
  1334. selector: "sort",
  1335. fn: function (){
  1336. var self=this;
  1337. return smalltalk.send(self, "_basicPerform_", ["sort"]);
  1338. return self;}
  1339. }),
  1340. smalltalk.Array);
  1341. smalltalk.addMethod(
  1342. "_sort_",
  1343. smalltalk.method({
  1344. selector: "sort:",
  1345. fn: function (aBlock){
  1346. var self=this;
  1347. return self.sort(function(a, b) {
  1348. if(aBlock(a,b)) {return -1} else {return 1}
  1349. })
  1350. ;
  1351. return self;}
  1352. }),
  1353. smalltalk.Array);
  1354. smalltalk.addMethod(
  1355. "_sorted",
  1356. smalltalk.method({
  1357. selector: "sorted",
  1358. fn: function (){
  1359. var self=this;
  1360. return smalltalk.send(smalltalk.send(self, "_copy", []), "_sort", []);
  1361. return self;}
  1362. }),
  1363. smalltalk.Array);
  1364. smalltalk.addMethod(
  1365. "_sorted_",
  1366. smalltalk.method({
  1367. selector: "sorted:",
  1368. fn: function (aBlock){
  1369. var self=this;
  1370. return smalltalk.send(smalltalk.send(self, "_copy", []), "_sort_", [aBlock]);
  1371. return self;}
  1372. }),
  1373. smalltalk.Array);
  1374. smalltalk.addMethod(
  1375. "_new_",
  1376. smalltalk.method({
  1377. selector: "new:",
  1378. fn: function (anInteger){
  1379. var self=this;
  1380. return new Array(anInteger);
  1381. return self;}
  1382. }),
  1383. smalltalk.Array.klass);
  1384. smalltalk.addMethod(
  1385. "_with_",
  1386. smalltalk.method({
  1387. selector: "with:",
  1388. fn: function (anObject){
  1389. var self=this;
  1390. return (function($rec){smalltalk.send($rec, "_at_put_", [(1), anObject]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new_", [(1)]));
  1391. return self;}
  1392. }),
  1393. smalltalk.Array.klass);
  1394. smalltalk.addMethod(
  1395. "_with_with_",
  1396. smalltalk.method({
  1397. selector: "with:with:",
  1398. fn: function (anObject, anObject2){
  1399. var self=this;
  1400. return (function($rec){smalltalk.send($rec, "_at_put_", [(1), anObject]);smalltalk.send($rec, "_at_put_", [(2), anObject2]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new_", [(2)]));
  1401. return self;}
  1402. }),
  1403. smalltalk.Array.klass);
  1404. smalltalk.addMethod(
  1405. "_with_with_with_",
  1406. smalltalk.method({
  1407. selector: "with:with:with:",
  1408. fn: function (anObject, anObject2, anObject3){
  1409. var self=this;
  1410. return (function($rec){smalltalk.send($rec, "_at_put_", [(1), anObject]);smalltalk.send($rec, "_at_put_", [(2), anObject2]);smalltalk.send($rec, "_at_put_", [(3), anObject3]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new_", [(3)]));
  1411. return self;}
  1412. }),
  1413. smalltalk.Array.klass);
  1414. smalltalk.addMethod(
  1415. "_withAll_",
  1416. smalltalk.method({
  1417. selector: "withAll:",
  1418. fn: function (aCollection){
  1419. var self=this;
  1420. var instance=nil;
  1421. (instance=smalltalk.send(self, "_new_", [smalltalk.send(aCollection, "_size", [])]));
  1422. smalltalk.send(aCollection, "_withIndexDo_", [(function(each, index){return smalltalk.send(instance, "_at_put_", [index, each]);})]);
  1423. return instance;
  1424. return self;}
  1425. }),
  1426. smalltalk.Array.klass);
  1427. smalltalk.addClass('CharacterArray', smalltalk.SequenceableCollection, [], 'Kernel-Collections');
  1428. smalltalk.addMethod(
  1429. "__comma",
  1430. smalltalk.method({
  1431. selector: ",",
  1432. fn: function (aString){
  1433. var self=this;
  1434. return smalltalk.send(smalltalk.send(self, "_asString", []), "__comma", [smalltalk.send(aString, "_asString", [])]);
  1435. return self;}
  1436. }),
  1437. smalltalk.CharacterArray);
  1438. smalltalk.addMethod(
  1439. "_add_",
  1440. smalltalk.method({
  1441. selector: "add:",
  1442. fn: function (anObject){
  1443. var self=this;
  1444. smalltalk.send(self, "_errorReadOnly", []);
  1445. return self;}
  1446. }),
  1447. smalltalk.CharacterArray);
  1448. smalltalk.addMethod(
  1449. "_asLowercase",
  1450. smalltalk.method({
  1451. selector: "asLowercase",
  1452. fn: function (){
  1453. var self=this;
  1454. return smalltalk.send(smalltalk.send(self, "_class", []), "_fromString_", [smalltalk.send(smalltalk.send(self, "_asString", []), "_asLowercase", [])]);
  1455. return self;}
  1456. }),
  1457. smalltalk.CharacterArray);
  1458. smalltalk.addMethod(
  1459. "_asNumber",
  1460. smalltalk.method({
  1461. selector: "asNumber",
  1462. fn: function (){
  1463. var self=this;
  1464. return smalltalk.send(smalltalk.send(self, "_asString", []), "_asNumber", []);
  1465. return self;}
  1466. }),
  1467. smalltalk.CharacterArray);
  1468. smalltalk.addMethod(
  1469. "_asString",
  1470. smalltalk.method({
  1471. selector: "asString",
  1472. fn: function (){
  1473. var self=this;
  1474. return smalltalk.send(self, "_subclassResponsibility", []);
  1475. return self;}
  1476. }),
  1477. smalltalk.CharacterArray);
  1478. smalltalk.addMethod(
  1479. "_asSymbol",
  1480. smalltalk.method({
  1481. selector: "asSymbol",
  1482. fn: function (){
  1483. var self=this;
  1484. return smalltalk.send(self, "_subclassResponsibility", []);
  1485. return self;}
  1486. }),
  1487. smalltalk.CharacterArray);
  1488. smalltalk.addMethod(
  1489. "_asUppercase",
  1490. smalltalk.method({
  1491. selector: "asUppercase",
  1492. fn: function (){
  1493. var self=this;
  1494. return smalltalk.send(smalltalk.send(self, "_class", []), "_fromString_", [smalltalk.send(smalltalk.send(self, "_asString", []), "_asUppercase", [])]);
  1495. return self;}
  1496. }),
  1497. smalltalk.CharacterArray);
  1498. smalltalk.addMethod(
  1499. "_at_put_",
  1500. smalltalk.method({
  1501. selector: "at:put:",
  1502. fn: function (anIndex, anObject){
  1503. var self=this;
  1504. smalltalk.send(self, "_errorReadOnly", []);
  1505. return self;}
  1506. }),
  1507. smalltalk.CharacterArray);
  1508. smalltalk.addMethod(
  1509. "_errorReadOnly",
  1510. smalltalk.method({
  1511. selector: "errorReadOnly",
  1512. fn: function (){
  1513. var self=this;
  1514. smalltalk.send(self, "_error_", ["Object is read-only"]);
  1515. return self;}
  1516. }),
  1517. smalltalk.CharacterArray);
  1518. smalltalk.addMethod(
  1519. "_printString",
  1520. smalltalk.method({
  1521. selector: "printString",
  1522. fn: function (){
  1523. var self=this;
  1524. return smalltalk.send(smalltalk.send(self, "_asString", []), "_printString", []);
  1525. return self;}
  1526. }),
  1527. smalltalk.CharacterArray);
  1528. smalltalk.addMethod(
  1529. "_remove_",
  1530. smalltalk.method({
  1531. selector: "remove:",
  1532. fn: function (anObject){
  1533. var self=this;
  1534. smalltalk.send(self, "_errorReadOnly", []);
  1535. return self;}
  1536. }),
  1537. smalltalk.CharacterArray);
  1538. smalltalk.addMethod(
  1539. "_fromString_",
  1540. smalltalk.method({
  1541. selector: "fromString:",
  1542. fn: function (aString){
  1543. var self=this;
  1544. smalltalk.send(self, "_subclassResponsibility", []);
  1545. return self;}
  1546. }),
  1547. smalltalk.CharacterArray.klass);
  1548. smalltalk.addClass('String', smalltalk.CharacterArray, [], 'Kernel-Collections');
  1549. smalltalk.addMethod(
  1550. "__comma",
  1551. smalltalk.method({
  1552. selector: ",",
  1553. fn: function (aString){
  1554. var self=this;
  1555. return self + aString;
  1556. return self;}
  1557. }),
  1558. smalltalk.String);
  1559. smalltalk.addMethod(
  1560. "__lt",
  1561. smalltalk.method({
  1562. selector: "<",
  1563. fn: function (aString){
  1564. var self=this;
  1565. return String(self) < aString._asString();
  1566. return self;}
  1567. }),
  1568. smalltalk.String);
  1569. smalltalk.addMethod(
  1570. "__lt_eq",
  1571. smalltalk.method({
  1572. selector: "<=",
  1573. fn: function (aString){
  1574. var self=this;
  1575. return String(self) <= aString._asString();
  1576. return self;}
  1577. }),
  1578. smalltalk.String);
  1579. smalltalk.addMethod(
  1580. "__eq",
  1581. smalltalk.method({
  1582. selector: "=",
  1583. fn: function (aString){
  1584. var self=this;
  1585. var $early={};
  1586. try{((($receiver = smalltalk.send(smalltalk.send(aString, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw $early=[false]})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw $early=[false]})();})]));
  1587. return String(self) === String(aString);
  1588. return self;
  1589. } catch(e) {if(e===$early)return e[0]; throw e}}
  1590. }),
  1591. smalltalk.String);
  1592. smalltalk.addMethod(
  1593. "__eq_eq",
  1594. smalltalk.method({
  1595. selector: "==",
  1596. fn: function (aString){
  1597. var self=this;
  1598. return smalltalk.send(self, "__eq", [aString]);
  1599. return self;}
  1600. }),
  1601. smalltalk.String);
  1602. smalltalk.addMethod(
  1603. "__gt",
  1604. smalltalk.method({
  1605. selector: ">",
  1606. fn: function (aString){
  1607. var self=this;
  1608. return String(self) > aString._asString();
  1609. return self;}
  1610. }),
  1611. smalltalk.String);
  1612. smalltalk.addMethod(
  1613. "__gt_eq",
  1614. smalltalk.method({
  1615. selector: ">=",
  1616. fn: function (aString){
  1617. var self=this;
  1618. return String(self) >= aString._asString();
  1619. return self;}
  1620. }),
  1621. smalltalk.String);
  1622. smalltalk.addMethod(
  1623. "_asJSON",
  1624. smalltalk.method({
  1625. selector: "asJSON",
  1626. fn: function (){
  1627. var self=this;
  1628. return self;
  1629. return self;}
  1630. }),
  1631. smalltalk.String);
  1632. smalltalk.addMethod(
  1633. "_asJavaScriptSelector",
  1634. smalltalk.method({
  1635. selector: "asJavaScriptSelector",
  1636. fn: function (){
  1637. var self=this;
  1638. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_asSelector", []), "_replace_with_", ["^_", ""]), "_replace_with_", ["_.*", ""]);
  1639. return self;}
  1640. }),
  1641. smalltalk.String);
  1642. smalltalk.addMethod(
  1643. "_asJavascript",
  1644. smalltalk.method({
  1645. selector: "asJavascript",
  1646. fn: function (){
  1647. var self=this;
  1648. if(self.search(/^[a-zA-Z0-9_:.$ ]*$/) == -1)
  1649. return "\"" + self.replace(/[\x00-\x1f"\\\x7f-\x9f]/g, function(ch){var c=ch.charCodeAt(0);return "\\x"+("0"+c.toString(16)).slice(-2)}) + "\"";
  1650. else
  1651. return "\"" + self + "\"";
  1652. ;
  1653. return self;}
  1654. }),
  1655. smalltalk.String);
  1656. smalltalk.addMethod(
  1657. "_asLowercase",
  1658. smalltalk.method({
  1659. selector: "asLowercase",
  1660. fn: function (){
  1661. var self=this;
  1662. return self.toLowerCase();
  1663. return self;}
  1664. }),
  1665. smalltalk.String);
  1666. smalltalk.addMethod(
  1667. "_asNumber",
  1668. smalltalk.method({
  1669. selector: "asNumber",
  1670. fn: function (){
  1671. var self=this;
  1672. return Number(self);
  1673. return self;}
  1674. }),
  1675. smalltalk.String);
  1676. smalltalk.addMethod(
  1677. "_asSelector",
  1678. smalltalk.method({
  1679. selector: "asSelector",
  1680. fn: function (){
  1681. var self=this;
  1682. var selector=nil;
  1683. (selector=smalltalk.send("_", "__comma", [self]));
  1684. (selector=smalltalk.send(selector, "_replace_with_", [":", "_"]));
  1685. (selector=smalltalk.send(selector, "_replace_with_", ["[+]", "_plus"]));
  1686. (selector=smalltalk.send(selector, "_replace_with_", ["-", "_minus"]));
  1687. (selector=smalltalk.send(selector, "_replace_with_", ["[*]", "_star"]));
  1688. (selector=smalltalk.send(selector, "_replace_with_", ["[/]", "_slash"]));
  1689. (selector=smalltalk.send(selector, "_replace_with_", [">", "_gt"]));
  1690. (selector=smalltalk.send(selector, "_replace_with_", ["<", "_lt"]));
  1691. (selector=smalltalk.send(selector, "_replace_with_", ["=", "_eq"]));
  1692. (selector=smalltalk.send(selector, "_replace_with_", [",", "_comma"]));
  1693. (selector=smalltalk.send(selector, "_replace_with_", ["[@]", "_at"]));
  1694. return selector;
  1695. return self;}
  1696. }),
  1697. smalltalk.String);
  1698. smalltalk.addMethod(
  1699. "_asString",
  1700. smalltalk.method({
  1701. selector: "asString",
  1702. fn: function (){
  1703. var self=this;
  1704. return self;
  1705. return self;}
  1706. }),
  1707. smalltalk.String);
  1708. smalltalk.addMethod(
  1709. "_asSymbol",
  1710. smalltalk.method({
  1711. selector: "asSymbol",
  1712. fn: function (){
  1713. var self=this;
  1714. return smalltalk.send((smalltalk.Symbol || Symbol), "_lookup_", [self]);
  1715. return self;}
  1716. }),
  1717. smalltalk.String);
  1718. smalltalk.addMethod(
  1719. "_asUppercase",
  1720. smalltalk.method({
  1721. selector: "asUppercase",
  1722. fn: function (){
  1723. var self=this;
  1724. return self.toUpperCase();
  1725. return self;}
  1726. }),
  1727. smalltalk.String);
  1728. smalltalk.addMethod(
  1729. "_asciiValue",
  1730. smalltalk.method({
  1731. selector: "asciiValue",
  1732. fn: function (){
  1733. var self=this;
  1734. return self.charCodeAt(0);;
  1735. return self;}
  1736. }),
  1737. smalltalk.String);
  1738. smalltalk.addMethod(
  1739. "_at_ifAbsent_",
  1740. smalltalk.method({
  1741. selector: "at:ifAbsent:",
  1742. fn: function (anIndex, aBlock){
  1743. var self=this;
  1744. return self[anIndex - 1] || aBlock();
  1745. return self;}
  1746. }),
  1747. smalltalk.String);
  1748. smalltalk.addMethod(
  1749. "_copyFrom_to_",
  1750. smalltalk.method({
  1751. selector: "copyFrom:to:",
  1752. fn: function (anIndex, anotherIndex){
  1753. var self=this;
  1754. return self.substring(anIndex - 1, anotherIndex);
  1755. return self;}
  1756. }),
  1757. smalltalk.String);
  1758. smalltalk.addMethod(
  1759. "_deepCopy",
  1760. smalltalk.method({
  1761. selector: "deepCopy",
  1762. fn: function (){
  1763. var self=this;
  1764. return smalltalk.send(self, "_shallowCopy", []);
  1765. return self;}
  1766. }),
  1767. smalltalk.String);
  1768. smalltalk.addMethod(
  1769. "_escaped",
  1770. smalltalk.method({
  1771. selector: "escaped",
  1772. fn: function (){
  1773. var self=this;
  1774. return escape(self);
  1775. return self;}
  1776. }),
  1777. smalltalk.String);
  1778. smalltalk.addMethod(
  1779. "_includesSubString_",
  1780. smalltalk.method({
  1781. selector: "includesSubString:",
  1782. fn: function (subString){
  1783. var self=this;
  1784. return self.indexOf(subString) != -1 ;
  1785. return self;}
  1786. }),
  1787. smalltalk.String);
  1788. smalltalk.addMethod(
  1789. "_isString",
  1790. smalltalk.method({
  1791. selector: "isString",
  1792. fn: function (){
  1793. var self=this;
  1794. return true;
  1795. return self;}
  1796. }),
  1797. smalltalk.String);
  1798. smalltalk.addMethod(
  1799. "_join_",
  1800. smalltalk.method({
  1801. selector: "join:",
  1802. fn: function (aCollection){
  1803. var self=this;
  1804. return smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(stream){return smalltalk.send(aCollection, "_do_separatedBy_", [(function(each){return smalltalk.send(stream, "_nextPutAll_", [smalltalk.send(each, "_asString", [])]);}), (function(){return smalltalk.send(stream, "_nextPutAll_", [self]);})]);})]);
  1805. return self;}
  1806. }),
  1807. smalltalk.String);
  1808. smalltalk.addMethod(
  1809. "_lineIndicesDo_",
  1810. smalltalk.method({
  1811. selector: "lineIndicesDo:",
  1812. fn: function (aBlock){
  1813. var self=this;
  1814. var $early={};
  1815. try{var cr=nil;
  1816. var lf=nil;
  1817. var start=nil;
  1818. var sz=nil;
  1819. var nextLF=nil;
  1820. var nextCR=nil;
  1821. (start=(1));
  1822. (sz=smalltalk.send(self, "_size", []));
  1823. (cr=smalltalk.send((smalltalk.String || String), "_cr", []));
  1824. (nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, (1)]));
  1825. (lf=smalltalk.send((smalltalk.String || String), "_lf", []));
  1826. (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, (1)]));
  1827. (function(){while((function(){return ((($receiver = start).klass === smalltalk.Number) ? $receiver <=sz : smalltalk.send($receiver, "__lt_eq", [sz]));})()) {(function(){((($receiver = smalltalk.send(smalltalk.send(nextLF, "__eq", [(0)]), "_and_", [(function(){return smalltalk.send(nextCR, "__eq", [(0)]);})])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, sz, sz]);return (function(){throw $early=[self]})();})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, sz, sz]);return (function(){throw $early=[self]})();})]));return ((($receiver = smalltalk.send(smalltalk.send(nextCR, "__eq", [(0)]), "_or_", [(function(){return smalltalk.send((0) < nextLF, "_and_", [(function(){return ((($receiver = nextLF).klass === smalltalk.Number) ? $receiver <nextCR : smalltalk.send($receiver, "__lt", [nextCR]));})]);})])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextLF).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);(start=(1) + nextLF);return (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]));})() : (function(){return ((($receiver = smalltalk.send((1) + nextCR, "__eq", [nextLF])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);(start=(1) + nextLF);(nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));return (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]));})() : (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);(start=(1) + nextCR);return (nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);(start=(1) + nextLF);(nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));return (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]));}), (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);(start=(1) + nextCR);return (nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));})]));})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextLF).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);(start=(1) + nextLF);return (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]));}), (function(){return ((($receiver = smalltalk.send((1) + nextCR, "__eq", [nextLF])).klass === smalltalk.Boolean) ? ($receiver ? (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);(start=(1) + nextLF);(nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));return (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]));})() : (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);(start=(1) + nextCR);return (nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextLF]);(start=(1) + nextLF);(nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));return (nextLF=smalltalk.send(self, "_indexOf_startingAt_", [lf, start]));}), (function(){smalltalk.send(aBlock, "_value_value_value_", [start, ((($receiver = nextCR).klass === smalltalk.Number) ? $receiver -(1) : smalltalk.send($receiver, "__minus", [(1)])), nextCR]);(start=(1) + nextCR);return (nextCR=smalltalk.send(self, "_indexOf_startingAt_", [cr, start]));})]));})]));})()}})();
  1828. return self;
  1829. } catch(e) {if(e===$early)return e[0]; throw e}}
  1830. }),
  1831. smalltalk.String);
  1832. smalltalk.addMethod(
  1833. "_lineNumber_",
  1834. smalltalk.method({
  1835. selector: "lineNumber:",
  1836. fn: function (anIndex){
  1837. var self=this;
  1838. var $early={};
  1839. try{var lineCount=nil;
  1840. (lineCount=(0));
  1841. smalltalk.send(self, "_lineIndicesDo_", [(function(start, endWithoutDelimiters, end){return ((($receiver = smalltalk.send((lineCount=((($receiver = lineCount).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))), "__eq", [anIndex])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return (function(){throw $early=[smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])]})();})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return (function(){throw $early=[smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])]})();})]));})]);
  1842. return nil;
  1843. return self;
  1844. } catch(e) {if(e===$early)return e[0]; throw e}}
  1845. }),
  1846. smalltalk.String);
  1847. smalltalk.addMethod(
  1848. "_lines",
  1849. smalltalk.method({
  1850. selector: "lines",
  1851. fn: function (){
  1852. var self=this;
  1853. var lines=nil;
  1854. (lines=smalltalk.send((smalltalk.Array || Array), "_new", []));
  1855. smalltalk.send(self, "_linesDo_", [(function(aLine){return smalltalk.send(lines, "_add_", [aLine]);})]);
  1856. return lines;
  1857. return self;}
  1858. }),
  1859. smalltalk.String);
  1860. smalltalk.addMethod(
  1861. "_linesDo_",
  1862. smalltalk.method({
  1863. selector: "linesDo:",
  1864. fn: function (aBlock){
  1865. var self=this;
  1866. smalltalk.send(self, "_lineIndicesDo_", [(function(start, endWithoutDelimiters, end){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_copyFrom_to_", [start, endWithoutDelimiters])]);})]);
  1867. return self;}
  1868. }),
  1869. smalltalk.String);
  1870. smalltalk.addMethod(
  1871. "_match_",
  1872. smalltalk.method({
  1873. selector: "match:",
  1874. fn: function (aRegexp){
  1875. var self=this;
  1876. return self.search(aRegexp) != -1;
  1877. return self;}
  1878. }),
  1879. smalltalk.String);
  1880. smalltalk.addMethod(
  1881. "_matchesOf_",
  1882. smalltalk.method({
  1883. selector: "matchesOf:",
  1884. fn: function (aRegularExpression){
  1885. var self=this;
  1886. return self.match(aRegularExpression);
  1887. return self;}
  1888. }),
  1889. smalltalk.String);
  1890. smalltalk.addMethod(
  1891. "_printNl",
  1892. smalltalk.method({
  1893. selector: "printNl",
  1894. fn: function (){
  1895. var self=this;
  1896. console.log(self);
  1897. return self;}
  1898. }),
  1899. smalltalk.String);
  1900. smalltalk.addMethod(
  1901. "_printString",
  1902. smalltalk.method({
  1903. selector: "printString",
  1904. fn: function (){
  1905. var self=this;
  1906. return smalltalk.send(smalltalk.send("'", "__comma", [self]), "__comma", ["'"]);
  1907. return self;}
  1908. }),
  1909. smalltalk.String);
  1910. smalltalk.addMethod(
  1911. "_replace_with_",
  1912. smalltalk.method({
  1913. selector: "replace:with:",
  1914. fn: function (aString, anotherString){
  1915. var self=this;
  1916. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [aString, "g"]), anotherString]);
  1917. return self;}
  1918. }),
  1919. smalltalk.String);
  1920. smalltalk.addMethod(
  1921. "_replaceRegexp_with_",
  1922. smalltalk.method({
  1923. selector: "replaceRegexp:with:",
  1924. fn: function (aRegexp, aString){
  1925. var self=this;
  1926. return self.replace(aRegexp, aString);
  1927. return self;}
  1928. }),
  1929. smalltalk.String);
  1930. smalltalk.addMethod(
  1931. "_reversed",
  1932. smalltalk.method({
  1933. selector: "reversed",
  1934. fn: function (){
  1935. var self=this;
  1936. return self.split("").reverse().join("");
  1937. return self;}
  1938. }),
  1939. smalltalk.String);
  1940. smalltalk.addMethod(
  1941. "_shallowCopy",
  1942. smalltalk.method({
  1943. selector: "shallowCopy",
  1944. fn: function (){
  1945. var self=this;
  1946. return smalltalk.send(smalltalk.send(self, "_class", []), "_fromString_", [self]);
  1947. return self;}
  1948. }),
  1949. smalltalk.String);
  1950. smalltalk.addMethod(
  1951. "_size",
  1952. smalltalk.method({
  1953. selector: "size",
  1954. fn: function (){
  1955. var self=this;
  1956. return self.length;
  1957. return self;}
  1958. }),
  1959. smalltalk.String);
  1960. smalltalk.addMethod(
  1961. "_tokenize_",
  1962. smalltalk.method({
  1963. selector: "tokenize:",
  1964. fn: function (aString){
  1965. var self=this;
  1966. return self.split(aString);
  1967. return self;}
  1968. }),
  1969. smalltalk.String);
  1970. smalltalk.addMethod(
  1971. "_trimBoth",
  1972. smalltalk.method({
  1973. selector: "trimBoth",
  1974. fn: function (){
  1975. var self=this;
  1976. return smalltalk.send(self, "_trimBoth_", ["\x5cs"]);
  1977. return self;}
  1978. }),
  1979. smalltalk.String);
  1980. smalltalk.addMethod(
  1981. "_trimBoth_",
  1982. smalltalk.method({
  1983. selector: "trimBoth:",
  1984. fn: function (separators){
  1985. var self=this;
  1986. return smalltalk.send(smalltalk.send(self, "_trimLeft_", [separators]), "_trimRight_", [separators]);
  1987. return self;}
  1988. }),
  1989. smalltalk.String);
  1990. smalltalk.addMethod(
  1991. "_trimLeft",
  1992. smalltalk.method({
  1993. selector: "trimLeft",
  1994. fn: function (){
  1995. var self=this;
  1996. return smalltalk.send(self, "_trimLeft_", ["\x5cs"]);
  1997. return self;}
  1998. }),
  1999. smalltalk.String);
  2000. smalltalk.addMethod(
  2001. "_trimLeft_",
  2002. smalltalk.method({
  2003. selector: "trimLeft:",
  2004. fn: function (separators){
  2005. var self=this;
  2006. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [smalltalk.send(smalltalk.send("^[", "__comma", [separators]), "__comma", ["]+"]), "g"]), ""]);
  2007. return self;}
  2008. }),
  2009. smalltalk.String);
  2010. smalltalk.addMethod(
  2011. "_trimRight",
  2012. smalltalk.method({
  2013. selector: "trimRight",
  2014. fn: function (){
  2015. var self=this;
  2016. return smalltalk.send(self, "_trimRight_", ["\x5cs"]);
  2017. return self;}
  2018. }),
  2019. smalltalk.String);
  2020. smalltalk.addMethod(
  2021. "_trimRight_",
  2022. smalltalk.method({
  2023. selector: "trimRight:",
  2024. fn: function (separators){
  2025. var self=this;
  2026. return smalltalk.send(self, "_replaceRegexp_with_", [smalltalk.send((smalltalk.RegularExpression || RegularExpression), "_fromString_flag_", [smalltalk.send(smalltalk.send("[", "__comma", [separators]), "__comma", ["]+$"]), "g"]), ""]);
  2027. return self;}
  2028. }),
  2029. smalltalk.String);
  2030. smalltalk.addMethod(
  2031. "_unescaped",
  2032. smalltalk.method({
  2033. selector: "unescaped",
  2034. fn: function (){
  2035. var self=this;
  2036. return unescape(self);
  2037. return self;}
  2038. }),
  2039. smalltalk.String);
  2040. smalltalk.addMethod(
  2041. "_cr",
  2042. smalltalk.method({
  2043. selector: "cr",
  2044. fn: function (){
  2045. var self=this;
  2046. return '\r';
  2047. return self;}
  2048. }),
  2049. smalltalk.String.klass);
  2050. smalltalk.addMethod(
  2051. "_crlf",
  2052. smalltalk.method({
  2053. selector: "crlf",
  2054. fn: function (){
  2055. var self=this;
  2056. return '\r\n';
  2057. return self;}
  2058. }),
  2059. smalltalk.String.klass);
  2060. smalltalk.addMethod(
  2061. "_fromString_",
  2062. smalltalk.method({
  2063. selector: "fromString:",
  2064. fn: function (aString){
  2065. var self=this;
  2066. return new self.fn(aString);
  2067. return self;}
  2068. }),
  2069. smalltalk.String.klass);
  2070. smalltalk.addMethod(
  2071. "_lf",
  2072. smalltalk.method({
  2073. selector: "lf",
  2074. fn: function (){
  2075. var self=this;
  2076. return '\n';
  2077. return self;}
  2078. }),
  2079. smalltalk.String.klass);
  2080. smalltalk.addMethod(
  2081. "_space",
  2082. smalltalk.method({
  2083. selector: "space",
  2084. fn: function (){
  2085. var self=this;
  2086. return ' ';
  2087. return self;}
  2088. }),
  2089. smalltalk.String.klass);
  2090. smalltalk.addMethod(
  2091. "_streamClass",
  2092. smalltalk.method({
  2093. selector: "streamClass",
  2094. fn: function (){
  2095. var self=this;
  2096. return (smalltalk.StringStream || StringStream);
  2097. return self;}
  2098. }),
  2099. smalltalk.String.klass);
  2100. smalltalk.addMethod(
  2101. "_streamContents_",
  2102. smalltalk.method({
  2103. selector: "streamContents:",
  2104. fn: function (blockWithArg){
  2105. var self=this;
  2106. var stream=nil;
  2107. (stream=smalltalk.send(smalltalk.send(self, "_streamClass", []), "_on_", [smalltalk.send((smalltalk.String || String), "_new", [])]));
  2108. smalltalk.send(blockWithArg, "_value_", [stream]);
  2109. return smalltalk.send(stream, "_contents", []);
  2110. return self;}
  2111. }),
  2112. smalltalk.String.klass);
  2113. smalltalk.addMethod(
  2114. "_tab",
  2115. smalltalk.method({
  2116. selector: "tab",
  2117. fn: function (){
  2118. var self=this;
  2119. return '\t';
  2120. return self;}
  2121. }),
  2122. smalltalk.String.klass);
  2123. smalltalk.addMethod(
  2124. "_value_",
  2125. smalltalk.method({
  2126. selector: "value:",
  2127. fn: function (aUTFCharCode){
  2128. var self=this;
  2129. return String.fromCharCode(aUTFCharCode);;
  2130. return self;}
  2131. }),
  2132. smalltalk.String.klass);
  2133. smalltalk.addClass('Symbol', smalltalk.CharacterArray, [], 'Kernel-Collections');
  2134. smalltalk.addMethod(
  2135. "__lt",
  2136. smalltalk.method({
  2137. selector: "<",
  2138. fn: function (aSymbol){
  2139. var self=this;
  2140. return ((($receiver = smalltalk.send(self, "_asString", [])).klass === smalltalk.Number) ? $receiver <smalltalk.send(aSymbol, "_asString", []) : smalltalk.send($receiver, "__lt", [smalltalk.send(aSymbol, "_asString", [])]));
  2141. return self;}
  2142. }),
  2143. smalltalk.Symbol);
  2144. smalltalk.addMethod(
  2145. "__lt_eq",
  2146. smalltalk.method({
  2147. selector: "<=",
  2148. fn: function (aSymbol){
  2149. var self=this;
  2150. return ((($receiver = smalltalk.send(self, "_asString", [])).klass === smalltalk.Number) ? $receiver <=smalltalk.send(aSymbol, "_asString", []) : smalltalk.send($receiver, "__lt_eq", [smalltalk.send(aSymbol, "_asString", [])]));
  2151. return self;}
  2152. }),
  2153. smalltalk.Symbol);
  2154. smalltalk.addMethod(
  2155. "__eq",
  2156. smalltalk.method({
  2157. selector: "=",
  2158. fn: function (aSymbol){
  2159. var self=this;
  2160. var $early={};
  2161. try{((($receiver = smalltalk.send(smalltalk.send(aSymbol, "_class", []), "__eq", [smalltalk.send(self, "_class", [])])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (function(){throw $early=[false]})();})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (function(){throw $early=[false]})();})]));
  2162. return smalltalk.send(smalltalk.send(self, "_asString", []), "__eq", [smalltalk.send(aSymbol, "_asString", [])]);
  2163. return self;
  2164. } catch(e) {if(e===$early)return e[0]; throw e}}
  2165. }),
  2166. smalltalk.Symbol);
  2167. smalltalk.addMethod(
  2168. "__gt",
  2169. smalltalk.method({
  2170. selector: ">",
  2171. fn: function (aSymbol){
  2172. var self=this;
  2173. return ((($receiver = smalltalk.send(self, "_asString", [])).klass === smalltalk.Number) ? $receiver >smalltalk.send(aSymbol, "_asString", []) : smalltalk.send($receiver, "__gt", [smalltalk.send(aSymbol, "_asString", [])]));
  2174. return self;}
  2175. }),
  2176. smalltalk.Symbol);
  2177. smalltalk.addMethod(
  2178. "__gt_eq",
  2179. smalltalk.method({
  2180. selector: ">=",
  2181. fn: function (aSymbol){
  2182. var self=this;
  2183. return ((($receiver = smalltalk.send(self, "_asString", [])).klass === smalltalk.Number) ? $receiver >=smalltalk.send(aSymbol, "_asString", []) : smalltalk.send($receiver, "__gt_eq", [smalltalk.send(aSymbol, "_asString", [])]));
  2184. return self;}
  2185. }),
  2186. smalltalk.Symbol);
  2187. smalltalk.addMethod(
  2188. "_asJSON",
  2189. smalltalk.method({
  2190. selector: "asJSON",
  2191. fn: function (){
  2192. var self=this;
  2193. return smalltalk.send(smalltalk.send(self, "_asString", []), "_asJSON", []);
  2194. return self;}
  2195. }),
  2196. smalltalk.Symbol);
  2197. smalltalk.addMethod(
  2198. "_asJavascript",
  2199. smalltalk.method({
  2200. selector: "asJavascript",
  2201. fn: function (){
  2202. var self=this;
  2203. return smalltalk.send(smalltalk.send("smalltalk.symbolFor(\x22", "__comma", [smalltalk.send(self, "_asString", [])]), "__comma", ["\x22)"]);
  2204. return self;}
  2205. }),
  2206. smalltalk.Symbol);
  2207. smalltalk.addMethod(
  2208. "_asSelector",
  2209. smalltalk.method({
  2210. selector: "asSelector",
  2211. fn: function (){
  2212. var self=this;
  2213. return smalltalk.send(smalltalk.send(self, "_asString", []), "_asSelector", []);
  2214. return self;}
  2215. }),
  2216. smalltalk.Symbol);
  2217. smalltalk.addMethod(
  2218. "_asString",
  2219. smalltalk.method({
  2220. selector: "asString",
  2221. fn: function (){
  2222. var self=this;
  2223. return self.value;
  2224. return self;}
  2225. }),
  2226. smalltalk.Symbol);
  2227. smalltalk.addMethod(
  2228. "_asSymbol",
  2229. smalltalk.method({
  2230. selector: "asSymbol",
  2231. fn: function (){
  2232. var self=this;
  2233. return self;
  2234. return self;}
  2235. }),
  2236. smalltalk.Symbol);
  2237. smalltalk.addMethod(
  2238. "_at_ifAbsent_",
  2239. smalltalk.method({
  2240. selector: "at:ifAbsent:",
  2241. fn: function (anIndex, aBlock){
  2242. var self=this;
  2243. return smalltalk.send(smalltalk.send(self, "_asString", []), "_at_ifAbsent_", [anIndex, aBlock]);
  2244. return self;}
  2245. }),
  2246. smalltalk.Symbol);
  2247. smalltalk.addMethod(
  2248. "_copyFrom_to_",
  2249. smalltalk.method({
  2250. selector: "copyFrom:to:",
  2251. fn: function (anIndex, anotherIndex){
  2252. var self=this;
  2253. return smalltalk.send(smalltalk.send(self, "_class", []), "_fromString_", [smalltalk.send(smalltalk.send(self, "_asString", []), "_copyFrom_to_", [anIndex, anotherIndex])]);
  2254. return self;}
  2255. }),
  2256. smalltalk.Symbol);
  2257. smalltalk.addMethod(
  2258. "_deepCopy",
  2259. smalltalk.method({
  2260. selector: "deepCopy",
  2261. fn: function (){
  2262. var self=this;
  2263. return self;
  2264. return self;}
  2265. }),
  2266. smalltalk.Symbol);
  2267. smalltalk.addMethod(
  2268. "_isSymbol",
  2269. smalltalk.method({
  2270. selector: "isSymbol",
  2271. fn: function (){
  2272. var self=this;
  2273. return true;
  2274. return self;}
  2275. }),
  2276. smalltalk.Symbol);
  2277. smalltalk.addMethod(
  2278. "_printString",
  2279. smalltalk.method({
  2280. selector: "printString",
  2281. fn: function (){
  2282. var self=this;
  2283. return smalltalk.send("#", "__comma", [smalltalk.send(self, "_asString", [])]);
  2284. return self;}
  2285. }),
  2286. smalltalk.Symbol);
  2287. smalltalk.addMethod(
  2288. "_shallowCopy",
  2289. smalltalk.method({
  2290. selector: "shallowCopy",
  2291. fn: function (){
  2292. var self=this;
  2293. return self;
  2294. return self;}
  2295. }),
  2296. smalltalk.Symbol);
  2297. smalltalk.addMethod(
  2298. "_size",
  2299. smalltalk.method({
  2300. selector: "size",
  2301. fn: function (){
  2302. var self=this;
  2303. return smalltalk.send(smalltalk.send(self, "_asString", []), "_size", []);
  2304. return self;}
  2305. }),
  2306. smalltalk.Symbol);
  2307. smalltalk.addMethod(
  2308. "_basicNew",
  2309. smalltalk.method({
  2310. selector: "basicNew",
  2311. fn: function (){
  2312. var self=this;
  2313. smalltalk.send(self, "_shouldNotImplement", []);
  2314. return self;}
  2315. }),
  2316. smalltalk.Symbol.klass);
  2317. smalltalk.addMethod(
  2318. "_fromString_",
  2319. smalltalk.method({
  2320. selector: "fromString:",
  2321. fn: function (aString){
  2322. var self=this;
  2323. return smalltalk.send(self, "_lookup_", [aString]);
  2324. return self;}
  2325. }),
  2326. smalltalk.Symbol.klass);
  2327. smalltalk.addMethod(
  2328. "_lookup_",
  2329. smalltalk.method({
  2330. selector: "lookup:",
  2331. fn: function (aString){
  2332. var self=this;
  2333. return smalltalk.symbolFor(aString);;
  2334. return self;}
  2335. }),
  2336. smalltalk.Symbol.klass);
  2337. smalltalk.addClass('Set', smalltalk.Collection, ['elements'], 'Kernel-Collections');
  2338. smalltalk.addMethod(
  2339. "__eq",
  2340. smalltalk.method({
  2341. selector: "=",
  2342. fn: function (aCollection){
  2343. var self=this;
  2344. return smalltalk.send(smalltalk.send(smalltalk.send(self, "_class", []), "__eq", [smalltalk.send(aCollection, "_class", [])]), "_and_", [(function(){return smalltalk.send(self['@elements'], "__eq", [smalltalk.send(aCollection, "_asArray", [])]);})]);
  2345. return self;}
  2346. }),
  2347. smalltalk.Set);
  2348. smalltalk.addMethod(
  2349. "_add_",
  2350. smalltalk.method({
  2351. selector: "add:",
  2352. fn: function (anObject){
  2353. var self=this;
  2354. var found;
  2355. for(var i=0; i < self['@elements'].length; i++) {
  2356. if(anObject == self['@elements'][i]) {
  2357. found = true;
  2358. break;
  2359. }
  2360. }
  2361. if(!found) {self['@elements'].push(anObject)}
  2362. ;
  2363. return self;}
  2364. }),
  2365. smalltalk.Set);
  2366. smalltalk.addMethod(
  2367. "_asArray",
  2368. smalltalk.method({
  2369. selector: "asArray",
  2370. fn: function (){
  2371. var self=this;
  2372. return smalltalk.send(self['@elements'], "_copy", []);
  2373. return self;}
  2374. }),
  2375. smalltalk.Set);
  2376. smalltalk.addMethod(
  2377. "_detect_ifNone_",
  2378. smalltalk.method({
  2379. selector: "detect:ifNone:",
  2380. fn: function (aBlock, anotherBlock){
  2381. var self=this;
  2382. return smalltalk.send(self['@elements'], "_detect_ifNone_", [aBlock, anotherBlock]);
  2383. return self;}
  2384. }),
  2385. smalltalk.Set);
  2386. smalltalk.addMethod(
  2387. "_do_",
  2388. smalltalk.method({
  2389. selector: "do:",
  2390. fn: function (aBlock){
  2391. var self=this;
  2392. smalltalk.send(self['@elements'], "_do_", [aBlock]);
  2393. return self;}
  2394. }),
  2395. smalltalk.Set);
  2396. smalltalk.addMethod(
  2397. "_includes_",
  2398. smalltalk.method({
  2399. selector: "includes:",
  2400. fn: function (anObject){
  2401. var self=this;
  2402. return smalltalk.send(self['@elements'], "_includes_", [anObject]);
  2403. return self;}
  2404. }),
  2405. smalltalk.Set);
  2406. smalltalk.addMethod(
  2407. "_initialize",
  2408. smalltalk.method({
  2409. selector: "initialize",
  2410. fn: function (){
  2411. var self=this;
  2412. smalltalk.send(self, "_initialize", [], smalltalk.Set.superclass || nil);
  2413. (self['@elements']=[]);
  2414. return self;}
  2415. }),
  2416. smalltalk.Set);
  2417. smalltalk.addMethod(
  2418. "_printString",
  2419. smalltalk.method({
  2420. selector: "printString",
  2421. fn: function (){
  2422. var self=this;
  2423. return smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(aStream){smalltalk.send(aStream, "_nextPutAll_", [smalltalk.send(smalltalk.send(self, "_printString", [], smalltalk.Set.superclass || nil), "__comma", [" ("])]);smalltalk.send(self, "_do_separatedBy_", [(function(each){return smalltalk.send(aStream, "_nextPutAll_", [smalltalk.send(each, "_printString", [])]);}), (function(){return smalltalk.send(aStream, "_nextPutAll_", [" "]);})]);return smalltalk.send(aStream, "_nextPutAll_", [")"]);})]);
  2424. return self;}
  2425. }),
  2426. smalltalk.Set);
  2427. smalltalk.addMethod(
  2428. "_remove_",
  2429. smalltalk.method({
  2430. selector: "remove:",
  2431. fn: function (anObject){
  2432. var self=this;
  2433. smalltalk.send(self['@elements'], "_remove_", [anObject]);
  2434. return self;}
  2435. }),
  2436. smalltalk.Set);
  2437. smalltalk.addMethod(
  2438. "_select_",
  2439. smalltalk.method({
  2440. selector: "select:",
  2441. fn: function (aBlock){
  2442. var self=this;
  2443. var collection=nil;
  2444. (collection=smalltalk.send(smalltalk.send(self, "_class", []), "_new", []));
  2445. smalltalk.send(self, "_do_", [(function(each){return ((($receiver = smalltalk.send(aBlock, "_value_", [each])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return smalltalk.send(collection, "_add_", [each]);})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return smalltalk.send(collection, "_add_", [each]);})]));})]);
  2446. return collection;
  2447. return self;}
  2448. }),
  2449. smalltalk.Set);
  2450. smalltalk.addMethod(
  2451. "_size",
  2452. smalltalk.method({
  2453. selector: "size",
  2454. fn: function (){
  2455. var self=this;
  2456. return smalltalk.send(self['@elements'], "_size", []);
  2457. return self;}
  2458. }),
  2459. smalltalk.Set);
  2460. smalltalk.addClass('RegularExpression', smalltalk.Object, [], 'Kernel-Collections');
  2461. smalltalk.addMethod(
  2462. "_compile_",
  2463. smalltalk.method({
  2464. selector: "compile:",
  2465. fn: function (aString){
  2466. var self=this;
  2467. return self.compile(aString);
  2468. return self;}
  2469. }),
  2470. smalltalk.RegularExpression);
  2471. smalltalk.addMethod(
  2472. "_exec_",
  2473. smalltalk.method({
  2474. selector: "exec:",
  2475. fn: function (aString){
  2476. var self=this;
  2477. return self.exec(aString) || nil;
  2478. return self;}
  2479. }),
  2480. smalltalk.RegularExpression);
  2481. smalltalk.addMethod(
  2482. "_test_",
  2483. smalltalk.method({
  2484. selector: "test:",
  2485. fn: function (aString){
  2486. var self=this;
  2487. return self.test(aString);
  2488. return self;}
  2489. }),
  2490. smalltalk.RegularExpression);
  2491. smalltalk.addMethod(
  2492. "_fromString_",
  2493. smalltalk.method({
  2494. selector: "fromString:",
  2495. fn: function (aString){
  2496. var self=this;
  2497. return smalltalk.send(self, "_fromString_flag_", [aString, ""]);
  2498. return self;}
  2499. }),
  2500. smalltalk.RegularExpression.klass);
  2501. smalltalk.addMethod(
  2502. "_fromString_flag_",
  2503. smalltalk.method({
  2504. selector: "fromString:flag:",
  2505. fn: function (aString, anotherString){
  2506. var self=this;
  2507. return new RegExp(aString, anotherString);
  2508. return self;}
  2509. }),
  2510. smalltalk.RegularExpression.klass);
  2511. smalltalk.addClass('Stream', smalltalk.Object, ['collection', 'position', 'streamSize'], 'Kernel-Collections');
  2512. smalltalk.addMethod(
  2513. "_atEnd",
  2514. smalltalk.method({
  2515. selector: "atEnd",
  2516. fn: function (){
  2517. var self=this;
  2518. return smalltalk.send(smalltalk.send(self, "_position", []), "__eq", [smalltalk.send(self, "_size", [])]);
  2519. return self;}
  2520. }),
  2521. smalltalk.Stream);
  2522. smalltalk.addMethod(
  2523. "_atStart",
  2524. smalltalk.method({
  2525. selector: "atStart",
  2526. fn: function (){
  2527. var self=this;
  2528. return smalltalk.send(smalltalk.send(self, "_position", []), "__eq", [(0)]);
  2529. return self;}
  2530. }),
  2531. smalltalk.Stream);
  2532. smalltalk.addMethod(
  2533. "_close",
  2534. smalltalk.method({
  2535. selector: "close",
  2536. fn: function (){
  2537. var self=this;
  2538. return self;}
  2539. }),
  2540. smalltalk.Stream);
  2541. smalltalk.addMethod(
  2542. "_collection",
  2543. smalltalk.method({
  2544. selector: "collection",
  2545. fn: function (){
  2546. var self=this;
  2547. return self['@collection'];
  2548. return self;}
  2549. }),
  2550. smalltalk.Stream);
  2551. smalltalk.addMethod(
  2552. "_contents",
  2553. smalltalk.method({
  2554. selector: "contents",
  2555. fn: function (){
  2556. var self=this;
  2557. return smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [(1), smalltalk.send(self, "_streamSize", [])]);
  2558. return self;}
  2559. }),
  2560. smalltalk.Stream);
  2561. smalltalk.addMethod(
  2562. "_do_",
  2563. smalltalk.method({
  2564. selector: "do:",
  2565. fn: function (aBlock){
  2566. var self=this;
  2567. (function(){while(!(function(){return smalltalk.send(self, "_atEnd", []);})()) {(function(){return smalltalk.send(aBlock, "_value_", [smalltalk.send(self, "_next", [])]);})()}})();
  2568. return self;}
  2569. }),
  2570. smalltalk.Stream);
  2571. smalltalk.addMethod(
  2572. "_flush",
  2573. smalltalk.method({
  2574. selector: "flush",
  2575. fn: function (){
  2576. var self=this;
  2577. return self;}
  2578. }),
  2579. smalltalk.Stream);
  2580. smalltalk.addMethod(
  2581. "_isEmpty",
  2582. smalltalk.method({
  2583. selector: "isEmpty",
  2584. fn: function (){
  2585. var self=this;
  2586. return smalltalk.send(smalltalk.send(self, "_size", []), "__eq", [(0)]);
  2587. return self;}
  2588. }),
  2589. smalltalk.Stream);
  2590. smalltalk.addMethod(
  2591. "_next",
  2592. smalltalk.method({
  2593. selector: "next",
  2594. fn: function (){
  2595. var self=this;
  2596. return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? ($receiver ? (function(){return nil;})() : (function(){smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);return smalltalk.send(self['@collection'], "_at_", [smalltalk.send(self, "_position", [])]);})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return nil;}), (function(){smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);return smalltalk.send(self['@collection'], "_at_", [smalltalk.send(self, "_position", [])]);})]));
  2597. return self;}
  2598. }),
  2599. smalltalk.Stream);
  2600. smalltalk.addMethod(
  2601. "_next_",
  2602. smalltalk.method({
  2603. selector: "next:",
  2604. fn: function (anInteger){
  2605. var self=this;
  2606. var tempCollection=nil;
  2607. (tempCollection=smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_class", []), "_new", []));
  2608. smalltalk.send(anInteger, "_timesRepeat_", [(function(){return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(tempCollection, "_add_", [smalltalk.send(self, "_next", [])]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(tempCollection, "_add_", [smalltalk.send(self, "_next", [])]);})]));})]);
  2609. return tempCollection;
  2610. return self;}
  2611. }),
  2612. smalltalk.Stream);
  2613. smalltalk.addMethod(
  2614. "_nextPut_",
  2615. smalltalk.method({
  2616. selector: "nextPut:",
  2617. fn: function (anObject){
  2618. var self=this;
  2619. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);
  2620. smalltalk.send(smalltalk.send(self, "_collection", []), "_at_put_", [smalltalk.send(self, "_position", []), anObject]);
  2621. smalltalk.send(self, "_setStreamSize_", [smalltalk.send(smalltalk.send(self, "_streamSize", []), "_max_", [smalltalk.send(self, "_position", [])])]);
  2622. return self;}
  2623. }),
  2624. smalltalk.Stream);
  2625. smalltalk.addMethod(
  2626. "_nextPutAll_",
  2627. smalltalk.method({
  2628. selector: "nextPutAll:",
  2629. fn: function (aCollection){
  2630. var self=this;
  2631. smalltalk.send(aCollection, "_do_", [(function(each){return smalltalk.send(self, "_nextPut_", [each]);})]);
  2632. return self;}
  2633. }),
  2634. smalltalk.Stream);
  2635. smalltalk.addMethod(
  2636. "_peek",
  2637. smalltalk.method({
  2638. selector: "peek",
  2639. fn: function (){
  2640. var self=this;
  2641. return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return smalltalk.send(smalltalk.send(self, "_collection", []), "_at_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return smalltalk.send(smalltalk.send(self, "_collection", []), "_at_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))]);})]));
  2642. return self;}
  2643. }),
  2644. smalltalk.Stream);
  2645. smalltalk.addMethod(
  2646. "_position",
  2647. smalltalk.method({
  2648. selector: "position",
  2649. fn: function (){
  2650. var self=this;
  2651. return (($receiver = self['@position']) == nil || $receiver == undefined) ? (function(){return (self['@position']=(0));})() : $receiver;
  2652. return self;}
  2653. }),
  2654. smalltalk.Stream);
  2655. smalltalk.addMethod(
  2656. "_position_",
  2657. smalltalk.method({
  2658. selector: "position:",
  2659. fn: function (anInteger){
  2660. var self=this;
  2661. (self['@position']=anInteger);
  2662. return self;}
  2663. }),
  2664. smalltalk.Stream);
  2665. smalltalk.addMethod(
  2666. "_reset",
  2667. smalltalk.method({
  2668. selector: "reset",
  2669. fn: function (){
  2670. var self=this;
  2671. smalltalk.send(self, "_position_", [(0)]);
  2672. return self;}
  2673. }),
  2674. smalltalk.Stream);
  2675. smalltalk.addMethod(
  2676. "_resetContents",
  2677. smalltalk.method({
  2678. selector: "resetContents",
  2679. fn: function (){
  2680. var self=this;
  2681. smalltalk.send(self, "_reset", []);
  2682. smalltalk.send(self, "_setStreamSize_", [(0)]);
  2683. return self;}
  2684. }),
  2685. smalltalk.Stream);
  2686. smalltalk.addMethod(
  2687. "_setCollection_",
  2688. smalltalk.method({
  2689. selector: "setCollection:",
  2690. fn: function (aCollection){
  2691. var self=this;
  2692. (self['@collection']=aCollection);
  2693. return self;}
  2694. }),
  2695. smalltalk.Stream);
  2696. smalltalk.addMethod(
  2697. "_setStreamSize_",
  2698. smalltalk.method({
  2699. selector: "setStreamSize:",
  2700. fn: function (anInteger){
  2701. var self=this;
  2702. (self['@streamSize']=anInteger);
  2703. return self;}
  2704. }),
  2705. smalltalk.Stream);
  2706. smalltalk.addMethod(
  2707. "_setToEnd",
  2708. smalltalk.method({
  2709. selector: "setToEnd",
  2710. fn: function (){
  2711. var self=this;
  2712. smalltalk.send(self, "_position_", [smalltalk.send(self, "_size", [])]);
  2713. return self;}
  2714. }),
  2715. smalltalk.Stream);
  2716. smalltalk.addMethod(
  2717. "_size",
  2718. smalltalk.method({
  2719. selector: "size",
  2720. fn: function (){
  2721. var self=this;
  2722. return smalltalk.send(self, "_streamSize", []);
  2723. return self;}
  2724. }),
  2725. smalltalk.Stream);
  2726. smalltalk.addMethod(
  2727. "_skip_",
  2728. smalltalk.method({
  2729. selector: "skip:",
  2730. fn: function (anInteger){
  2731. var self=this;
  2732. smalltalk.send(self, "_position_", [smalltalk.send(((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +anInteger : smalltalk.send($receiver, "__plus", [anInteger])), "_min_max_", [smalltalk.send(self, "_size", []), (0)])]);
  2733. return self;}
  2734. }),
  2735. smalltalk.Stream);
  2736. smalltalk.addMethod(
  2737. "_streamSize",
  2738. smalltalk.method({
  2739. selector: "streamSize",
  2740. fn: function (){
  2741. var self=this;
  2742. return self['@streamSize'];
  2743. return self;}
  2744. }),
  2745. smalltalk.Stream);
  2746. smalltalk.addMethod(
  2747. "_on_",
  2748. smalltalk.method({
  2749. selector: "on:",
  2750. fn: function (aCollection){
  2751. var self=this;
  2752. return (function($rec){smalltalk.send($rec, "_setCollection_", [aCollection]);smalltalk.send($rec, "_setStreamSize_", [smalltalk.send(aCollection, "_size", [])]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send(self, "_new", []));
  2753. return self;}
  2754. }),
  2755. smalltalk.Stream.klass);
  2756. smalltalk.addClass('StringStream', smalltalk.Stream, [], 'Kernel-Collections');
  2757. smalltalk.addMethod(
  2758. "_cr",
  2759. smalltalk.method({
  2760. selector: "cr",
  2761. fn: function (){
  2762. var self=this;
  2763. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_cr", [])]);
  2764. return self;}
  2765. }),
  2766. smalltalk.StringStream);
  2767. smalltalk.addMethod(
  2768. "_crlf",
  2769. smalltalk.method({
  2770. selector: "crlf",
  2771. fn: function (){
  2772. var self=this;
  2773. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_crlf", [])]);
  2774. return self;}
  2775. }),
  2776. smalltalk.StringStream);
  2777. smalltalk.addMethod(
  2778. "_lf",
  2779. smalltalk.method({
  2780. selector: "lf",
  2781. fn: function (){
  2782. var self=this;
  2783. return smalltalk.send(self, "_nextPutAll_", [smalltalk.send((smalltalk.String || String), "_lf", [])]);
  2784. return self;}
  2785. }),
  2786. smalltalk.StringStream);
  2787. smalltalk.addMethod(
  2788. "_next_",
  2789. smalltalk.method({
  2790. selector: "next:",
  2791. fn: function (anInteger){
  2792. var self=this;
  2793. var tempCollection=nil;
  2794. (tempCollection=smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_class", []), "_new", []));
  2795. smalltalk.send(anInteger, "_timesRepeat_", [(function(){return ((($receiver = smalltalk.send(self, "_atEnd", [])).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return (tempCollection=smalltalk.send(tempCollection, "__comma", [smalltalk.send(self, "_next", [])]));})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return (tempCollection=smalltalk.send(tempCollection, "__comma", [smalltalk.send(self, "_next", [])]));})]));})]);
  2796. return tempCollection;
  2797. return self;}
  2798. }),
  2799. smalltalk.StringStream);
  2800. smalltalk.addMethod(
  2801. "_nextPut_",
  2802. smalltalk.method({
  2803. selector: "nextPut:",
  2804. fn: function (aString){
  2805. var self=this;
  2806. smalltalk.send(self, "_nextPutAll_", [aString]);
  2807. return self;}
  2808. }),
  2809. smalltalk.StringStream);
  2810. smalltalk.addMethod(
  2811. "_nextPutAll_",
  2812. smalltalk.method({
  2813. selector: "nextPutAll:",
  2814. fn: function (aString){
  2815. var self=this;
  2816. smalltalk.send(self, "_setCollection_", [smalltalk.send(smalltalk.send(smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [(1), smalltalk.send(self, "_position", [])]), "__comma", [aString]), "__comma", [smalltalk.send(smalltalk.send(self, "_collection", []), "_copyFrom_to_", [((($receiver = ((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]))).klass === smalltalk.Number) ? $receiver +smalltalk.send(aString, "_size", []) : smalltalk.send($receiver, "__plus", [smalltalk.send(aString, "_size", [])])), smalltalk.send(smalltalk.send(self, "_collection", []), "_size", [])])])]);
  2817. smalltalk.send(self, "_position_", [((($receiver = smalltalk.send(self, "_position", [])).klass === smalltalk.Number) ? $receiver +smalltalk.send(aString, "_size", []) : smalltalk.send($receiver, "__plus", [smalltalk.send(aString, "_size", [])]))]);
  2818. smalltalk.send(self, "_setStreamSize_", [smalltalk.send(smalltalk.send(self, "_streamSize", []), "_max_", [smalltalk.send(self, "_position", [])])]);
  2819. return self;}
  2820. }),
  2821. smalltalk.StringStream);
  2822. smalltalk.addMethod(
  2823. "_space",
  2824. smalltalk.method({
  2825. selector: "space",
  2826. fn: function (){
  2827. var self=this;
  2828. smalltalk.send(self, "_nextPut_", [" "]);
  2829. return self;}
  2830. }),
  2831. smalltalk.StringStream);