Importer-Exporter.js 137 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994
  1. define("amber/Importer-Exporter", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber/Kernel-Objects"], function(smalltalk,nil,_st){
  2. smalltalk.addPackage('Importer-Exporter');
  3. smalltalk.packages["Importer-Exporter"].transport = {"type":"amd","amdNamespace":"amber"};
  4. smalltalk.addClass('AbstractExporter', smalltalk.Object, [], 'Importer-Exporter');
  5. smalltalk.AbstractExporter.comment="I am an abstract exporter for Amber source code.";
  6. smalltalk.addMethod(
  7. smalltalk.method({
  8. selector: "chunkEscape:",
  9. category: 'convenience',
  10. fn: function (aString){
  11. var self=this;
  12. return smalltalk.withContext(function($ctx1) {
  13. var $1;
  14. $1=_st(_st(aString)._replace_with_("!","!!"))._trimBoth();
  15. return $1;
  16. }, function($ctx1) {$ctx1.fill(self,"chunkEscape:",{aString:aString},smalltalk.AbstractExporter)})},
  17. args: ["aString"],
  18. source: "chunkEscape: aString\x0a\x09\x22Replace all occurrences of ! with !! and trim at both ends.\x22\x0a\x0a\x09^(aString replace: '!' with: '!!') trimBoth",
  19. messageSends: ["trimBoth", "replace:with:"],
  20. referencedClasses: []
  21. }),
  22. smalltalk.AbstractExporter);
  23. smalltalk.addMethod(
  24. smalltalk.method({
  25. selector: "classNameFor:",
  26. category: 'convenience',
  27. fn: function (aClass){
  28. var self=this;
  29. return smalltalk.withContext(function($ctx1) {
  30. var $2,$3,$1;
  31. $2=_st(aClass)._isMetaclass();
  32. if(smalltalk.assert($2)){
  33. $1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(" class");
  34. } else {
  35. $3=_st(aClass)._isNil();
  36. if(smalltalk.assert($3)){
  37. $1="nil";
  38. } else {
  39. $1=_st(aClass)._name();
  40. };
  41. };
  42. return $1;
  43. }, function($ctx1) {$ctx1.fill(self,"classNameFor:",{aClass:aClass},smalltalk.AbstractExporter)})},
  44. args: ["aClass"],
  45. source: "classNameFor: aClass\x0a\x09^aClass isMetaclass\x0a\x09\x09ifTrue: [ aClass instanceClass name, ' class' ]\x0a\x09\x09ifFalse: [\x0a\x09\x09\x09aClass isNil\x0a\x09\x09\x09\x09ifTrue: [ 'nil' ]\x0a\x09\x09\x09\x09ifFalse: [ aClass name ] ]",
  46. messageSends: ["ifTrue:ifFalse:", ",", "name", "instanceClass", "isNil", "isMetaclass"],
  47. referencedClasses: []
  48. }),
  49. smalltalk.AbstractExporter);
  50. smalltalk.addMethod(
  51. smalltalk.method({
  52. selector: "recipe",
  53. category: 'fileOut',
  54. fn: function (){
  55. var self=this;
  56. return smalltalk.withContext(function($ctx1) {
  57. self._subclassResponsibility();
  58. return self}, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.AbstractExporter)})},
  59. args: [],
  60. source: "recipe\x0a\x09\x22Recipe to export a given package.\x22\x0a\x0a\x09self subclassResponsibility",
  61. messageSends: ["subclassResponsibility"],
  62. referencedClasses: []
  63. }),
  64. smalltalk.AbstractExporter);
  65. smalltalk.AbstractExporter.klass.iVarNames = ['default'];
  66. smalltalk.addMethod(
  67. smalltalk.method({
  68. selector: "default",
  69. category: 'instance creation',
  70. fn: function (){
  71. var self=this;
  72. return smalltalk.withContext(function($ctx1) {
  73. var $2,$1;
  74. $2=self["@default"];
  75. if(($receiver = $2) == nil || $receiver == undefined){
  76. self["@default"]=self._new();
  77. $1=self["@default"];
  78. } else {
  79. $1=$2;
  80. };
  81. return $1;
  82. }, function($ctx1) {$ctx1.fill(self,"default",{},smalltalk.AbstractExporter.klass)})},
  83. args: [],
  84. source: "default\x0a\x09^ default ifNil: [ default := self new ]",
  85. messageSends: ["ifNil:", "new"],
  86. referencedClasses: []
  87. }),
  88. smalltalk.AbstractExporter.klass);
  89. smalltalk.addClass('ChunkExporter', smalltalk.AbstractExporter, [], 'Importer-Exporter');
  90. smalltalk.ChunkExporter.comment="I am an exporter dedicated to outputting Amber source code in the classic Smalltalk chunk format.\x0a\x0aI do not output any compiled code.";
  91. smalltalk.addMethod(
  92. smalltalk.method({
  93. selector: "exportCategoryEpilogueOf:on:",
  94. category: 'output',
  95. fn: function (aCategory,aStream){
  96. var self=this;
  97. return smalltalk.withContext(function($ctx1) {
  98. var $1,$2;
  99. $1=aStream;
  100. _st($1)._nextPutAll_(" !");
  101. _st($1)._lf();
  102. $2=_st($1)._lf();
  103. return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryEpilogueOf:on:",{aCategory:aCategory,aStream:aStream},smalltalk.ChunkExporter)})},
  104. args: ["aCategory", "aStream"],
  105. source: "exportCategoryEpilogueOf: aCategory on: aStream\x0a\x09aStream nextPutAll: ' !'; lf; lf",
  106. messageSends: ["nextPutAll:", "lf"],
  107. referencedClasses: []
  108. }),
  109. smalltalk.ChunkExporter);
  110. smalltalk.addMethod(
  111. smalltalk.method({
  112. selector: "exportCategoryPrologueOf:on:",
  113. category: 'output',
  114. fn: function (aCategory,aStream){
  115. var self=this;
  116. return smalltalk.withContext(function($ctx1) {
  117. var $1,$2;
  118. $1=aStream;
  119. _st($1)._nextPutAll_("!".__comma(self._classNameFor_(_st(aCategory)._theClass())));
  120. $2=_st($1)._nextPutAll_(_st(" methodsFor: '".__comma(_st(aCategory)._name())).__comma("'!"));
  121. return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryPrologueOf:on:",{aCategory:aCategory,aStream:aStream},smalltalk.ChunkExporter)})},
  122. args: ["aCategory", "aStream"],
  123. source: "exportCategoryPrologueOf: aCategory on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: aCategory theClass);\x0a\x09\x09nextPutAll: ' methodsFor: ''', aCategory name, '''!'",
  124. messageSends: ["nextPutAll:", ",", "classNameFor:", "theClass", "name"],
  125. referencedClasses: []
  126. }),
  127. smalltalk.ChunkExporter);
  128. smalltalk.addMethod(
  129. smalltalk.method({
  130. selector: "exportDefinitionOf:on:",
  131. category: 'output',
  132. fn: function (aClass,aStream){
  133. var self=this;
  134. return smalltalk.withContext(function($ctx1) {
  135. var $1,$2,$3,$4,$5,$6,$7;
  136. $1=aStream;
  137. _st($1)._nextPutAll_(self._classNameFor_(_st(aClass)._superclass()));
  138. _st($1)._nextPutAll_(" subclass: #".__comma(self._classNameFor_(aClass)));
  139. _st($1)._lf();
  140. _st($1)._tab();
  141. $2=_st($1)._nextPutAll_("instanceVariableNames: '");
  142. _st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
  143. return smalltalk.withContext(function($ctx2) {
  144. return _st(aStream)._nextPutAll_(each);
  145. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  146. return smalltalk.withContext(function($ctx2) {
  147. return _st(aStream)._nextPutAll_(" ");
  148. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  149. $3=aStream;
  150. _st($3)._nextPutAll_("'");
  151. _st($3)._lf();
  152. _st($3)._tab();
  153. _st($3)._nextPutAll_(_st("package: '".__comma(_st(aClass)._category())).__comma("'!"));
  154. $4=_st($3)._lf();
  155. $5=_st(_st(aClass)._comment())._notEmpty();
  156. if(smalltalk.assert($5)){
  157. $6=aStream;
  158. _st($6)._nextPutAll_(_st("!".__comma(self._classNameFor_(aClass))).__comma(" commentStamp!"));
  159. _st($6)._lf();
  160. _st($6)._nextPutAll_(_st(self._chunkEscape_(_st(aClass)._comment())).__comma("!"));
  161. $7=_st($6)._lf();
  162. $7;
  163. };
  164. _st(aStream)._lf();
  165. return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter)})},
  166. args: ["aClass", "aStream"],
  167. source: "exportDefinitionOf: aClass on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ' subclass: #', (self classNameFor: aClass); lf;\x0a\x09\x09tab; nextPutAll: 'instanceVariableNames: '''.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09aStream\x0a\x09\x09nextPutAll: ''''; lf;\x0a\x09\x09tab; nextPutAll: 'package: ''', aClass category, '''!'; lf.\x0a\x09aClass comment notEmpty ifTrue: [\x0a\x09\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: aClass), ' commentStamp!';lf;\x0a\x09\x09nextPutAll: (self chunkEscape: aClass comment), '!';lf].\x0a\x09aStream lf",
  168. messageSends: ["nextPutAll:", "classNameFor:", "superclass", ",", "lf", "tab", "do:separatedBy:", "instanceVariableNames", "category", "ifTrue:", "chunkEscape:", "comment", "notEmpty"],
  169. referencedClasses: []
  170. }),
  171. smalltalk.ChunkExporter);
  172. smalltalk.addMethod(
  173. smalltalk.method({
  174. selector: "exportMetaDefinitionOf:on:",
  175. category: 'output',
  176. fn: function (aClass,aStream){
  177. var self=this;
  178. return smalltalk.withContext(function($ctx1) {
  179. var $1,$2,$3,$4,$5;
  180. $1=_st(_st(_st(aClass)._class())._instanceVariableNames())._isEmpty();
  181. if(! smalltalk.assert($1)){
  182. $2=aStream;
  183. _st($2)._nextPutAll_(self._classNameFor_(_st(aClass)._class()));
  184. $3=_st($2)._nextPutAll_(" instanceVariableNames: '");
  185. $3;
  186. _st(_st(_st(aClass)._class())._instanceVariableNames())._do_separatedBy_((function(each){
  187. return smalltalk.withContext(function($ctx2) {
  188. return _st(aStream)._nextPutAll_(each);
  189. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  190. return smalltalk.withContext(function($ctx2) {
  191. return _st(aStream)._nextPutAll_(" ");
  192. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  193. $4=aStream;
  194. _st($4)._nextPutAll_("'!");
  195. _st($4)._lf();
  196. $5=_st($4)._lf();
  197. $5;
  198. };
  199. return self}, function($ctx1) {$ctx1.fill(self,"exportMetaDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter)})},
  200. args: ["aClass", "aStream"],
  201. source: "exportMetaDefinitionOf: aClass on: aStream\x0a\x0a\x09aClass class instanceVariableNames isEmpty ifFalse: [\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: (self classNameFor: aClass class);\x0a\x09\x09\x09nextPutAll: ' instanceVariableNames: '''.\x0a\x09\x09aClass class instanceVariableNames\x0a\x09\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: '''!'; lf; lf]",
  202. messageSends: ["ifFalse:", "nextPutAll:", "classNameFor:", "class", "do:separatedBy:", "instanceVariableNames", "lf", "isEmpty"],
  203. referencedClasses: []
  204. }),
  205. smalltalk.ChunkExporter);
  206. smalltalk.addMethod(
  207. smalltalk.method({
  208. selector: "exportMethod:on:",
  209. category: 'output',
  210. fn: function (aMethod,aStream){
  211. var self=this;
  212. return smalltalk.withContext(function($ctx1) {
  213. var $1,$2;
  214. $1=aStream;
  215. _st($1)._lf();
  216. _st($1)._lf();
  217. _st($1)._nextPutAll_(self._chunkEscape_(_st(aMethod)._source()));
  218. _st($1)._lf();
  219. $2=_st($1)._nextPutAll_("!");
  220. return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.ChunkExporter)})},
  221. args: ["aMethod", "aStream"],
  222. source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09lf; lf; nextPutAll: (self chunkEscape: aMethod source); lf;\x0a\x09\x09nextPutAll: '!'",
  223. messageSends: ["lf", "nextPutAll:", "chunkEscape:", "source"],
  224. referencedClasses: []
  225. }),
  226. smalltalk.ChunkExporter);
  227. smalltalk.addMethod(
  228. smalltalk.method({
  229. selector: "exportPackageDefinitionOf:on:",
  230. category: 'output',
  231. fn: function (aPackage,aStream){
  232. var self=this;
  233. return smalltalk.withContext(function($ctx1) {
  234. var $1,$2;
  235. $1=aStream;
  236. _st($1)._nextPutAll_(_st("Smalltalk current createPackage: '".__comma(_st(aPackage)._name())).__comma("'!"));
  237. $2=_st($1)._lf();
  238. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageDefinitionOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.ChunkExporter)})},
  239. args: ["aPackage", "aStream"],
  240. source: "exportPackageDefinitionOf: aPackage on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: 'Smalltalk current createPackage: ''', aPackage name, '''!';\x0a\x09\x09lf",
  241. messageSends: ["nextPutAll:", ",", "name", "lf"],
  242. referencedClasses: []
  243. }),
  244. smalltalk.ChunkExporter);
  245. smalltalk.addMethod(
  246. smalltalk.method({
  247. selector: "extensionCategoriesOfPackage:",
  248. category: 'accessing',
  249. fn: function (aPackage){
  250. var self=this;
  251. var name,map,result;
  252. function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  253. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  254. function $MethodCategory(){return smalltalk.MethodCategory||(typeof MethodCategory=="undefined"?nil:MethodCategory)}
  255. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  256. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  257. return smalltalk.withContext(function($ctx1) {
  258. var $1,$2;
  259. name=_st(aPackage)._name();
  260. result=_st($OrderedCollection())._new();
  261. _st(_st($Package())._sortedClasses_(_st(_st($Smalltalk())._current())._classes()))._do_((function(each){
  262. return smalltalk.withContext(function($ctx2) {
  263. return _st([each,_st(each)._class()])._do_((function(aClass){
  264. return smalltalk.withContext(function($ctx3) {
  265. map=_st($Dictionary())._new();
  266. map;
  267. _st(aClass)._protocolsDo_((function(category,methods){
  268. return smalltalk.withContext(function($ctx4) {
  269. $1=_st(category)._match_("^\x5c*".__comma(name));
  270. if(smalltalk.assert($1)){
  271. return _st(map)._at_put_(category,methods);
  272. };
  273. }, function($ctx4) {$ctx4.fillBlock({category:category,methods:methods},$ctx3)})}));
  274. return _st(result)._addAll_(_st(_st(_st(map)._keys())._sorted_((function(a,b){
  275. return smalltalk.withContext(function($ctx4) {
  276. return _st(a).__lt_eq(b);
  277. }, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx3)})})))._collect_((function(category){
  278. return smalltalk.withContext(function($ctx4) {
  279. return _st($MethodCategory())._name_theClass_methods_(category,aClass,_st(map)._at_(category));
  280. }, function($ctx4) {$ctx4.fillBlock({category:category},$ctx3)})})));
  281. }, function($ctx3) {$ctx3.fillBlock({aClass:aClass},$ctx2)})}));
  282. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  283. $2=result;
  284. return $2;
  285. }, function($ctx1) {$ctx1.fill(self,"extensionCategoriesOfPackage:",{aPackage:aPackage,name:name,map:map,result:result},smalltalk.ChunkExporter)})},
  286. args: ["aPackage"],
  287. source: "extensionCategoriesOfPackage: aPackage\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| name map result |\x0a\x09name := aPackage name.\x0a\x09result := OrderedCollection new.\x0a\x09(Package sortedClasses: Smalltalk current classes) do: [:each |\x0a\x09\x09{each. each class} do: [:aClass |\x0a\x09\x09\x09map := Dictionary new.\x0a\x09\x09\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09\x09\x09(category match: '^\x5c*', name) ifTrue: [ map at: category put: methods ]].\x0a\x09\x09\x09result addAll: ((map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09\x09\x09MethodCategory name: category theClass: aClass methods: (map at: category)]) ]].\x0a\x09^result",
  288. messageSends: ["name", "new", "do:", "protocolsDo:", "ifTrue:", "at:put:", "match:", ",", "addAll:", "collect:", "name:theClass:methods:", "at:", "sorted:", "<=", "keys", "class", "sortedClasses:", "classes", "current"],
  289. referencedClasses: ["OrderedCollection", "Dictionary", "MethodCategory", "Smalltalk", "Package"]
  290. }),
  291. smalltalk.ChunkExporter);
  292. smalltalk.addMethod(
  293. smalltalk.method({
  294. selector: "methodsOfCategory:",
  295. category: 'accessing',
  296. fn: function (aCategory){
  297. var self=this;
  298. return smalltalk.withContext(function($ctx1) {
  299. var $1;
  300. $1=_st(_st(aCategory)._methods())._sorted_((function(a,b){
  301. return smalltalk.withContext(function($ctx2) {
  302. return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
  303. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
  304. return $1;
  305. }, function($ctx1) {$ctx1.fill(self,"methodsOfCategory:",{aCategory:aCategory},smalltalk.ChunkExporter)})},
  306. args: ["aCategory"],
  307. source: "methodsOfCategory: aCategory\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^(aCategory methods) sorted: [:a :b | a selector <= b selector]",
  308. messageSends: ["sorted:", "<=", "selector", "methods"],
  309. referencedClasses: []
  310. }),
  311. smalltalk.ChunkExporter);
  312. smalltalk.addMethod(
  313. smalltalk.method({
  314. selector: "ownCategoriesOfClass:",
  315. category: 'accessing',
  316. fn: function (aClass){
  317. var self=this;
  318. var map;
  319. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  320. function $MethodCategory(){return smalltalk.MethodCategory||(typeof MethodCategory=="undefined"?nil:MethodCategory)}
  321. return smalltalk.withContext(function($ctx1) {
  322. var $1,$2;
  323. map=_st($Dictionary())._new();
  324. _st(aClass)._protocolsDo_((function(category,methods){
  325. return smalltalk.withContext(function($ctx2) {
  326. $1=_st(category)._match_("^\x5c*");
  327. if(! smalltalk.assert($1)){
  328. return _st(map)._at_put_(category,methods);
  329. };
  330. }, function($ctx2) {$ctx2.fillBlock({category:category,methods:methods},$ctx1)})}));
  331. $2=_st(_st(_st(map)._keys())._sorted_((function(a,b){
  332. return smalltalk.withContext(function($ctx2) {
  333. return _st(a).__lt_eq(b);
  334. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._collect_((function(category){
  335. return smalltalk.withContext(function($ctx2) {
  336. return _st($MethodCategory())._name_theClass_methods_(category,aClass,_st(map)._at_(category));
  337. }, function($ctx2) {$ctx2.fillBlock({category:category},$ctx1)})}));
  338. return $2;
  339. }, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfClass:",{aClass:aClass,map:map},smalltalk.ChunkExporter)})},
  340. args: ["aClass"],
  341. source: "ownCategoriesOfClass: aClass\x0a\x09\x22Answer the protocols of aClassthat are not package extensions\x22\x0a\x09\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| map |\x0a\x09map := Dictionary new.\x0a\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09(category match: '^\x5c*') ifFalse: [ map at: category put: methods ]].\x0a\x09^(map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09MethodCategory name: category theClass: aClass methods: (map at: category) ]",
  342. messageSends: ["new", "protocolsDo:", "ifFalse:", "at:put:", "match:", "collect:", "name:theClass:methods:", "at:", "sorted:", "<=", "keys"],
  343. referencedClasses: ["Dictionary", "MethodCategory"]
  344. }),
  345. smalltalk.ChunkExporter);
  346. smalltalk.addMethod(
  347. smalltalk.method({
  348. selector: "ownCategoriesOfMetaClass:",
  349. category: 'accessing',
  350. fn: function (aClass){
  351. var self=this;
  352. return smalltalk.withContext(function($ctx1) {
  353. var $1;
  354. $1=self._ownCategoriesOfClass_(_st(aClass)._class());
  355. return $1;
  356. }, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfMetaClass:",{aClass:aClass},smalltalk.ChunkExporter)})},
  357. args: ["aClass"],
  358. source: "ownCategoriesOfMetaClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09^self ownCategoriesOfClass: aClass class",
  359. messageSends: ["ownCategoriesOfClass:", "class"],
  360. referencedClasses: []
  361. }),
  362. smalltalk.ChunkExporter);
  363. smalltalk.addMethod(
  364. smalltalk.method({
  365. selector: "recipe",
  366. category: 'fileOut',
  367. fn: function (){
  368. var self=this;
  369. var exportCategoryRecipe;
  370. function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
  371. return smalltalk.withContext(function($ctx1) {
  372. var $1;
  373. exportCategoryRecipe=[self.__minus_gt("exportCategoryPrologueOf:on:"),[self.__minus_gt("methodsOfCategory:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportCategoryEpilogueOf:on:")];
  374. $1=[self.__minus_gt("exportPackageDefinitionOf:on:"),[_st($PluggableExporter()).__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfClass:")]).__comma(exportCategoryRecipe),self.__minus_gt("exportMetaDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfMetaClass:")]).__comma(exportCategoryRecipe)],_st([self.__minus_gt("extensionCategoriesOfPackage:")]).__comma(exportCategoryRecipe)];
  375. return $1;
  376. }, function($ctx1) {$ctx1.fill(self,"recipe",{exportCategoryRecipe:exportCategoryRecipe},smalltalk.ChunkExporter)})},
  377. args: [],
  378. source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09| exportCategoryRecipe |\x0a\x09exportCategoryRecipe := {\x0a\x09\x09self -> #exportCategoryPrologueOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09self -> #methodsOfCategory:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportCategoryEpilogueOf:on: }.\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09PluggableExporter -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfClass: }, exportCategoryRecipe.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfMetaClass: }, exportCategoryRecipe }.\x0a\x09\x09{ self -> #extensionCategoriesOfPackage: }, exportCategoryRecipe\x0a\x09}",
  379. messageSends: ["->", ","],
  380. referencedClasses: ["PluggableExporter"]
  381. }),
  382. smalltalk.ChunkExporter);
  383. smalltalk.addMethod(
  384. smalltalk.method({
  385. selector: "chunkEscape:",
  386. category: 'private',
  387. fn: function (aString){
  388. var self=this;
  389. return smalltalk.withContext(function($ctx1) {
  390. var $1;
  391. $1=_st(_st(aString)._replace_with_("!","!!"))._trimBoth();
  392. return $1;
  393. }, function($ctx1) {$ctx1.fill(self,"chunkEscape:",{aString:aString},smalltalk.ChunkExporter.klass)})},
  394. args: ["aString"],
  395. source: "chunkEscape: aString\x0a\x09\x22Replace all occurrences of ! with !! and trim at both ends.\x22\x0a\x0a\x09^(aString replace: '!' with: '!!') trimBoth",
  396. messageSends: ["trimBoth", "replace:with:"],
  397. referencedClasses: []
  398. }),
  399. smalltalk.ChunkExporter.klass);
  400. smalltalk.addMethod(
  401. smalltalk.method({
  402. selector: "classNameFor:",
  403. category: 'private',
  404. fn: function (aClass){
  405. var self=this;
  406. return smalltalk.withContext(function($ctx1) {
  407. var $2,$3,$1;
  408. $2=_st(aClass)._isMetaclass();
  409. if(smalltalk.assert($2)){
  410. $1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(" class");
  411. } else {
  412. $3=_st(aClass)._isNil();
  413. if(smalltalk.assert($3)){
  414. $1="nil";
  415. } else {
  416. $1=_st(aClass)._name();
  417. };
  418. };
  419. return $1;
  420. }, function($ctx1) {$ctx1.fill(self,"classNameFor:",{aClass:aClass},smalltalk.ChunkExporter.klass)})},
  421. args: ["aClass"],
  422. source: "classNameFor: aClass\x0a\x09^aClass isMetaclass\x0a\x09\x09ifTrue: [aClass instanceClass name, ' class']\x0a\x09\x09ifFalse: [\x0a\x09\x09aClass isNil\x0a\x09\x09\x09ifTrue: ['nil']\x0a\x09\x09\x09ifFalse: [aClass name]]",
  423. messageSends: ["ifTrue:ifFalse:", ",", "name", "instanceClass", "isNil", "isMetaclass"],
  424. referencedClasses: []
  425. }),
  426. smalltalk.ChunkExporter.klass);
  427. smalltalk.addMethod(
  428. smalltalk.method({
  429. selector: "exportCategoryEpilogueOf:on:",
  430. category: 'exporting-output',
  431. fn: function (category,aStream){
  432. var self=this;
  433. return smalltalk.withContext(function($ctx1) {
  434. var $1,$2;
  435. $1=aStream;
  436. _st($1)._nextPutAll_(" !");
  437. _st($1)._lf();
  438. $2=_st($1)._lf();
  439. return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryEpilogueOf:on:",{category:category,aStream:aStream},smalltalk.ChunkExporter.klass)})},
  440. args: ["category", "aStream"],
  441. source: "exportCategoryEpilogueOf: category on: aStream\x0a\x09aStream nextPutAll: ' !'; lf; lf",
  442. messageSends: ["nextPutAll:", "lf"],
  443. referencedClasses: []
  444. }),
  445. smalltalk.ChunkExporter.klass);
  446. smalltalk.addMethod(
  447. smalltalk.method({
  448. selector: "exportCategoryPrologueOf:on:",
  449. category: 'exporting-output',
  450. fn: function (category,aStream){
  451. var self=this;
  452. return smalltalk.withContext(function($ctx1) {
  453. var $1,$2;
  454. $1=aStream;
  455. _st($1)._nextPutAll_("!".__comma(self._classNameFor_(_st(category)._theClass())));
  456. $2=_st($1)._nextPutAll_(_st(" methodsFor: '".__comma(_st(category)._name())).__comma("'!"));
  457. return self}, function($ctx1) {$ctx1.fill(self,"exportCategoryPrologueOf:on:",{category:category,aStream:aStream},smalltalk.ChunkExporter.klass)})},
  458. args: ["category", "aStream"],
  459. source: "exportCategoryPrologueOf: category on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: category theClass);\x0a\x09\x09nextPutAll: ' methodsFor: ''', category name, '''!'",
  460. messageSends: ["nextPutAll:", ",", "classNameFor:", "theClass", "name"],
  461. referencedClasses: []
  462. }),
  463. smalltalk.ChunkExporter.klass);
  464. smalltalk.addMethod(
  465. smalltalk.method({
  466. selector: "exportDefinitionOf:on:",
  467. category: 'exporting-output',
  468. fn: function (aClass,aStream){
  469. var self=this;
  470. return smalltalk.withContext(function($ctx1) {
  471. var $1,$2,$3,$4,$5,$6,$7;
  472. $1=aStream;
  473. _st($1)._nextPutAll_(self._classNameFor_(_st(aClass)._superclass()));
  474. _st($1)._nextPutAll_(" subclass: #".__comma(self._classNameFor_(aClass)));
  475. _st($1)._lf();
  476. _st($1)._tab();
  477. $2=_st($1)._nextPutAll_("instanceVariableNames: '");
  478. _st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
  479. return smalltalk.withContext(function($ctx2) {
  480. return _st(aStream)._nextPutAll_(each);
  481. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  482. return smalltalk.withContext(function($ctx2) {
  483. return _st(aStream)._nextPutAll_(" ");
  484. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  485. $3=aStream;
  486. _st($3)._nextPutAll_("'");
  487. _st($3)._lf();
  488. _st($3)._tab();
  489. _st($3)._nextPutAll_(_st("package: '".__comma(_st(aClass)._category())).__comma("'!"));
  490. $4=_st($3)._lf();
  491. $5=_st(_st(aClass)._comment())._notEmpty();
  492. if(smalltalk.assert($5)){
  493. $6=aStream;
  494. _st($6)._nextPutAll_(_st("!".__comma(self._classNameFor_(aClass))).__comma(" commentStamp!"));
  495. _st($6)._lf();
  496. _st($6)._nextPutAll_(_st(self._chunkEscape_(_st(aClass)._comment())).__comma("!"));
  497. $7=_st($6)._lf();
  498. $7;
  499. };
  500. _st(aStream)._lf();
  501. return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter.klass)})},
  502. args: ["aClass", "aStream"],
  503. source: "exportDefinitionOf: aClass on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ' subclass: #', (self classNameFor: aClass); lf;\x0a\x09\x09tab; nextPutAll: 'instanceVariableNames: '''.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09aStream\x0a\x09\x09nextPutAll: ''''; lf;\x0a\x09\x09tab; nextPutAll: 'package: ''', aClass category, '''!'; lf.\x0a\x09aClass comment notEmpty ifTrue: [\x0a\x09\x09aStream\x0a\x09\x09nextPutAll: '!', (self classNameFor: aClass), ' commentStamp!';lf;\x0a\x09\x09nextPutAll: (self chunkEscape: aClass comment), '!';lf].\x0a\x09aStream lf",
  504. messageSends: ["nextPutAll:", "classNameFor:", "superclass", ",", "lf", "tab", "do:separatedBy:", "instanceVariableNames", "category", "ifTrue:", "chunkEscape:", "comment", "notEmpty"],
  505. referencedClasses: []
  506. }),
  507. smalltalk.ChunkExporter.klass);
  508. smalltalk.addMethod(
  509. smalltalk.method({
  510. selector: "exportMetaDefinitionOf:on:",
  511. category: 'exporting-output',
  512. fn: function (aClass,aStream){
  513. var self=this;
  514. return smalltalk.withContext(function($ctx1) {
  515. var $1,$2,$3,$4,$5;
  516. $1=_st(_st(_st(aClass)._class())._instanceVariableNames())._isEmpty();
  517. if(! smalltalk.assert($1)){
  518. $2=aStream;
  519. _st($2)._nextPutAll_(self._classNameFor_(_st(aClass)._class()));
  520. $3=_st($2)._nextPutAll_(" instanceVariableNames: '");
  521. $3;
  522. _st(_st(_st(aClass)._class())._instanceVariableNames())._do_separatedBy_((function(each){
  523. return smalltalk.withContext(function($ctx2) {
  524. return _st(aStream)._nextPutAll_(each);
  525. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  526. return smalltalk.withContext(function($ctx2) {
  527. return _st(aStream)._nextPutAll_(" ");
  528. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  529. $4=aStream;
  530. _st($4)._nextPutAll_("'!");
  531. _st($4)._lf();
  532. $5=_st($4)._lf();
  533. $5;
  534. };
  535. return self}, function($ctx1) {$ctx1.fill(self,"exportMetaDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.ChunkExporter.klass)})},
  536. args: ["aClass", "aStream"],
  537. source: "exportMetaDefinitionOf: aClass on: aStream\x0a\x0a\x09aClass class instanceVariableNames isEmpty ifFalse: [\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: (self classNameFor: aClass class);\x0a\x09\x09\x09nextPutAll: ' instanceVariableNames: '''.\x0a\x09\x09aClass class instanceVariableNames\x0a\x09\x09\x09do: [:each | aStream nextPutAll: each]\x0a\x09\x09\x09separatedBy: [aStream nextPutAll: ' '].\x0a\x09\x09aStream\x0a\x09\x09\x09nextPutAll: '''!'; lf; lf]",
  538. messageSends: ["ifFalse:", "nextPutAll:", "classNameFor:", "class", "do:separatedBy:", "instanceVariableNames", "lf", "isEmpty"],
  539. referencedClasses: []
  540. }),
  541. smalltalk.ChunkExporter.klass);
  542. smalltalk.addMethod(
  543. smalltalk.method({
  544. selector: "exportMethod:on:",
  545. category: 'exporting-output',
  546. fn: function (aMethod,aStream){
  547. var self=this;
  548. return smalltalk.withContext(function($ctx1) {
  549. var $1,$2;
  550. $1=aStream;
  551. _st($1)._lf();
  552. _st($1)._lf();
  553. _st($1)._nextPutAll_(self._chunkEscape_(_st(aMethod)._source()));
  554. _st($1)._lf();
  555. $2=_st($1)._nextPutAll_("!");
  556. return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.ChunkExporter.klass)})},
  557. args: ["aMethod", "aStream"],
  558. source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09lf; lf; nextPutAll: (self chunkEscape: aMethod source); lf;\x0a\x09\x09nextPutAll: '!'",
  559. messageSends: ["lf", "nextPutAll:", "chunkEscape:", "source"],
  560. referencedClasses: []
  561. }),
  562. smalltalk.ChunkExporter.klass);
  563. smalltalk.addMethod(
  564. smalltalk.method({
  565. selector: "exportPackageDefinitionOf:on:",
  566. category: 'exporting-output',
  567. fn: function (package_,aStream){
  568. var self=this;
  569. return smalltalk.withContext(function($ctx1) {
  570. var $1,$2;
  571. $1=aStream;
  572. _st($1)._nextPutAll_(_st("Smalltalk current createPackage: '".__comma(_st(package_)._name())).__comma("'!"));
  573. $2=_st($1)._lf();
  574. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageDefinitionOf:on:",{package_:package_,aStream:aStream},smalltalk.ChunkExporter.klass)})},
  575. args: ["package", "aStream"],
  576. source: "exportPackageDefinitionOf: package on: aStream\x0a\x09\x22Chunk format.\x22\x0a\x0a\x09aStream\x0a\x09\x09nextPutAll: 'Smalltalk current createPackage: ''', package name, '''!';\x0a\x09\x09lf",
  577. messageSends: ["nextPutAll:", ",", "name", "lf"],
  578. referencedClasses: []
  579. }),
  580. smalltalk.ChunkExporter.klass);
  581. smalltalk.addMethod(
  582. smalltalk.method({
  583. selector: "extensionCategoriesOfPackage:",
  584. category: 'exporting-accessing',
  585. fn: function (package_){
  586. var self=this;
  587. var name,map,result;
  588. function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  589. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  590. function $MethodCategory(){return smalltalk.MethodCategory||(typeof MethodCategory=="undefined"?nil:MethodCategory)}
  591. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  592. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  593. return smalltalk.withContext(function($ctx1) {
  594. var $1,$2;
  595. name=_st(package_)._name();
  596. result=_st($OrderedCollection())._new();
  597. _st(_st($Package())._sortedClasses_(_st(_st($Smalltalk())._current())._classes()))._do_((function(each){
  598. return smalltalk.withContext(function($ctx2) {
  599. return _st([each,_st(each)._class()])._do_((function(aClass){
  600. return smalltalk.withContext(function($ctx3) {
  601. map=_st($Dictionary())._new();
  602. map;
  603. _st(aClass)._protocolsDo_((function(category,methods){
  604. return smalltalk.withContext(function($ctx4) {
  605. $1=_st(category)._match_("^\x5c*".__comma(name));
  606. if(smalltalk.assert($1)){
  607. return _st(map)._at_put_(category,methods);
  608. };
  609. }, function($ctx4) {$ctx4.fillBlock({category:category,methods:methods},$ctx3)})}));
  610. return _st(result)._addAll_(_st(_st(_st(map)._keys())._sorted_((function(a,b){
  611. return smalltalk.withContext(function($ctx4) {
  612. return _st(a).__lt_eq(b);
  613. }, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx3)})})))._collect_((function(category){
  614. return smalltalk.withContext(function($ctx4) {
  615. return _st($MethodCategory())._name_theClass_methods_(category,aClass,_st(map)._at_(category));
  616. }, function($ctx4) {$ctx4.fillBlock({category:category},$ctx3)})})));
  617. }, function($ctx3) {$ctx3.fillBlock({aClass:aClass},$ctx2)})}));
  618. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  619. $2=result;
  620. return $2;
  621. }, function($ctx1) {$ctx1.fill(self,"extensionCategoriesOfPackage:",{package_:package_,name:name,map:map,result:result},smalltalk.ChunkExporter.klass)})},
  622. args: ["package"],
  623. source: "extensionCategoriesOfPackage: package\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| name map result |\x0a\x09name := package name.\x0a\x09result := OrderedCollection new.\x0a\x09(Package sortedClasses: Smalltalk current classes) do: [:each |\x0a\x09\x09{each. each class} do: [:aClass |\x0a\x09\x09\x09map := Dictionary new.\x0a\x09\x09\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09\x09\x09(category match: '^\x5c*', name) ifTrue: [ map at: category put: methods ]].\x0a\x09\x09\x09result addAll: ((map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09\x09\x09MethodCategory name: category theClass: aClass methods: (map at: category)]) ]].\x0a\x09^result",
  624. messageSends: ["name", "new", "do:", "protocolsDo:", "ifTrue:", "at:put:", "match:", ",", "addAll:", "collect:", "name:theClass:methods:", "at:", "sorted:", "<=", "keys", "class", "sortedClasses:", "classes", "current"],
  625. referencedClasses: ["OrderedCollection", "Dictionary", "MethodCategory", "Smalltalk", "Package"]
  626. }),
  627. smalltalk.ChunkExporter.klass);
  628. smalltalk.addMethod(
  629. smalltalk.method({
  630. selector: "methodsOfCategory:",
  631. category: 'exporting-accessing',
  632. fn: function (category){
  633. var self=this;
  634. return smalltalk.withContext(function($ctx1) {
  635. var $1;
  636. $1=_st(_st(category)._methods())._sorted_((function(a,b){
  637. return smalltalk.withContext(function($ctx2) {
  638. return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
  639. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}));
  640. return $1;
  641. }, function($ctx1) {$ctx1.fill(self,"methodsOfCategory:",{category:category},smalltalk.ChunkExporter.klass)})},
  642. args: ["category"],
  643. source: "methodsOfCategory: category\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^(category methods) sorted: [:a :b | a selector <= b selector]",
  644. messageSends: ["sorted:", "<=", "selector", "methods"],
  645. referencedClasses: []
  646. }),
  647. smalltalk.ChunkExporter.klass);
  648. smalltalk.addMethod(
  649. smalltalk.method({
  650. selector: "ownCategoriesOfClass:",
  651. category: 'exporting-accessing',
  652. fn: function (aClass){
  653. var self=this;
  654. var map;
  655. function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
  656. function $MethodCategory(){return smalltalk.MethodCategory||(typeof MethodCategory=="undefined"?nil:MethodCategory)}
  657. return smalltalk.withContext(function($ctx1) {
  658. var $1,$2;
  659. map=_st($Dictionary())._new();
  660. _st(aClass)._protocolsDo_((function(category,methods){
  661. return smalltalk.withContext(function($ctx2) {
  662. $1=_st(category)._match_("^\x5c*");
  663. if(! smalltalk.assert($1)){
  664. return _st(map)._at_put_(category,methods);
  665. };
  666. }, function($ctx2) {$ctx2.fillBlock({category:category,methods:methods},$ctx1)})}));
  667. $2=_st(_st(_st(map)._keys())._sorted_((function(a,b){
  668. return smalltalk.withContext(function($ctx2) {
  669. return _st(a).__lt_eq(b);
  670. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._collect_((function(category){
  671. return smalltalk.withContext(function($ctx2) {
  672. return _st($MethodCategory())._name_theClass_methods_(category,aClass,_st(map)._at_(category));
  673. }, function($ctx2) {$ctx2.fillBlock({category:category},$ctx1)})}));
  674. return $2;
  675. }, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfClass:",{aClass:aClass,map:map},smalltalk.ChunkExporter.klass)})},
  676. args: ["aClass"],
  677. source: "ownCategoriesOfClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09| map |\x0a\x09map := Dictionary new.\x0a\x09aClass protocolsDo: [:category :methods |\x0a\x09\x09(category match: '^\x5c*') ifFalse: [ map at: category put: methods ]].\x0a\x09^(map keys sorted: [:a :b | a <= b ]) collect: [:category |\x0a\x09\x09MethodCategory name: category theClass: aClass methods: (map at: category) ]",
  678. messageSends: ["new", "protocolsDo:", "ifFalse:", "at:put:", "match:", "collect:", "name:theClass:methods:", "at:", "sorted:", "<=", "keys"],
  679. referencedClasses: ["Dictionary", "MethodCategory"]
  680. }),
  681. smalltalk.ChunkExporter.klass);
  682. smalltalk.addMethod(
  683. smalltalk.method({
  684. selector: "ownCategoriesOfMetaClass:",
  685. category: 'exporting-accessing',
  686. fn: function (aClass){
  687. var self=this;
  688. return smalltalk.withContext(function($ctx1) {
  689. var $1;
  690. $1=self._ownCategoriesOfClass_(_st(aClass)._class());
  691. return $1;
  692. }, function($ctx1) {$ctx1.fill(self,"ownCategoriesOfMetaClass:",{aClass:aClass},smalltalk.ChunkExporter.klass)})},
  693. args: ["aClass"],
  694. source: "ownCategoriesOfMetaClass: aClass\x0a\x09\x22Issue #143: sort protocol alphabetically\x22\x0a\x0a\x09^self ownCategoriesOfClass: aClass class",
  695. messageSends: ["ownCategoriesOfClass:", "class"],
  696. referencedClasses: []
  697. }),
  698. smalltalk.ChunkExporter.klass);
  699. smalltalk.addMethod(
  700. smalltalk.method({
  701. selector: "recipe",
  702. category: 'fileOut',
  703. fn: function (){
  704. var self=this;
  705. var exportCategoryRecipe;
  706. function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
  707. return smalltalk.withContext(function($ctx1) {
  708. var $1;
  709. exportCategoryRecipe=[self.__minus_gt("exportCategoryPrologueOf:on:"),[self.__minus_gt("methodsOfCategory:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportCategoryEpilogueOf:on:")];
  710. $1=[self.__minus_gt("exportPackageDefinitionOf:on:"),[_st($PluggableExporter()).__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfClass:")]).__comma(exportCategoryRecipe),self.__minus_gt("exportMetaDefinitionOf:on:"),_st([self.__minus_gt("ownCategoriesOfMetaClass:")]).__comma(exportCategoryRecipe)],_st([self.__minus_gt("extensionCategoriesOfPackage:")]).__comma(exportCategoryRecipe)];
  711. return $1;
  712. }, function($ctx1) {$ctx1.fill(self,"recipe",{exportCategoryRecipe:exportCategoryRecipe},smalltalk.ChunkExporter.klass)})},
  713. args: [],
  714. source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09| exportCategoryRecipe |\x0a\x09exportCategoryRecipe := {\x0a\x09\x09self -> #exportCategoryPrologueOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09self -> #methodsOfCategory:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportCategoryEpilogueOf:on: }.\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09PluggableExporter -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfClass: }, exportCategoryRecipe.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{ self -> #ownCategoriesOfMetaClass: }, exportCategoryRecipe }.\x0a\x09\x09{ self -> #extensionCategoriesOfPackage: }, exportCategoryRecipe\x0a\x09}",
  715. messageSends: ["->", ","],
  716. referencedClasses: ["PluggableExporter"]
  717. }),
  718. smalltalk.ChunkExporter.klass);
  719. smalltalk.addClass('Exporter', smalltalk.AbstractExporter, [], 'Importer-Exporter');
  720. smalltalk.Exporter.comment="I am responsible for outputting Amber code into a JavaScript string.\x0a\x0aThe generated output is enough to reconstruct the exported data, including Smalltalk source code and other metadata.\x0a\x0a## Use case\x0a\x0aI am typically used to save code outside of the Amber runtime (committing to disk, etc.).\x0a\x0a## API\x0a\x0aUse `#exportAll`, `#exportClass:` or `#exportPackage:` methods.";
  721. smalltalk.addMethod(
  722. smalltalk.method({
  723. selector: "amdRecipe",
  724. category: 'fileOut',
  725. fn: function (){
  726. var self=this;
  727. var legacy,result;
  728. function $AmdExporter(){return smalltalk.AmdExporter||(typeof AmdExporter=="undefined"?nil:AmdExporter)}
  729. return smalltalk.withContext(function($ctx1) {
  730. var $1;
  731. legacy=self._recipe();
  732. result=_st(_st(_st(legacy)._copyFrom_to_((1),(2))).__comma([_st($AmdExporter()).__minus_gt("exportPackageTransportOf:on:")])).__comma(_st(legacy)._copyFrom_to_((3),_st(legacy)._size()));
  733. _st(_st(result)._first())._key_($AmdExporter());
  734. _st(_st(result)._last())._key_($AmdExporter());
  735. $1=result;
  736. return $1;
  737. }, function($ctx1) {$ctx1.fill(self,"amdRecipe",{legacy:legacy,result:result},smalltalk.Exporter)})},
  738. args: [],
  739. source: "amdRecipe\x0a\x09\x22Export a given package with amd transport type.\x22\x0a\x0a\x09| legacy result |\x0a\x09legacy := self recipe.\x0a\x09result := (legacy copyFrom: 1 to: 2),\x0a\x09{ AmdExporter -> #exportPackageTransportOf:on: },\x0a\x09(legacy copyFrom: 3 to: legacy size).\x0a\x09result first key: AmdExporter.\x0a\x09result last key: AmdExporter.\x0a\x09^result",
  740. messageSends: ["recipe", ",", "copyFrom:to:", "size", "->", "key:", "first", "last"],
  741. referencedClasses: ["AmdExporter"]
  742. }),
  743. smalltalk.Exporter);
  744. smalltalk.addMethod(
  745. smalltalk.method({
  746. selector: "classNameFor:",
  747. category: 'convenience',
  748. fn: function (aClass){
  749. var self=this;
  750. return smalltalk.withContext(function($ctx1) {
  751. var $2,$3,$1;
  752. $2=_st(aClass)._isMetaclass();
  753. if(smalltalk.assert($2)){
  754. $1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(".klass");
  755. } else {
  756. $3=_st(aClass)._isNil();
  757. if(smalltalk.assert($3)){
  758. $1="nil";
  759. } else {
  760. $1=_st(aClass)._name();
  761. };
  762. };
  763. return $1;
  764. }, function($ctx1) {$ctx1.fill(self,"classNameFor:",{aClass:aClass},smalltalk.Exporter)})},
  765. args: ["aClass"],
  766. source: "classNameFor: aClass\x0a\x09^aClass isMetaclass\x0a\x09\x09ifTrue: [ aClass instanceClass name, '.klass' ]\x0a\x09\x09ifFalse: [\x0a\x09\x09\x09aClass isNil\x0a\x09\x09\x09\x09ifTrue: [ 'nil' ]\x0a\x09\x09\x09\x09ifFalse: [ aClass name ] ]",
  767. messageSends: ["ifTrue:ifFalse:", ",", "name", "instanceClass", "isNil", "isMetaclass"],
  768. referencedClasses: []
  769. }),
  770. smalltalk.Exporter);
  771. smalltalk.addMethod(
  772. smalltalk.method({
  773. selector: "exportDefinitionOf:on:",
  774. category: 'output',
  775. fn: function (aClass,aStream){
  776. var self=this;
  777. return smalltalk.withContext(function($ctx1) {
  778. var $1,$2,$3,$4,$5,$6,$7;
  779. $1=aStream;
  780. _st($1)._lf();
  781. _st($1)._nextPutAll_("smalltalk.addClass(");
  782. _st($1)._nextPutAll_(_st("'".__comma(self._classNameFor_(aClass))).__comma("', "));
  783. _st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._superclass())));
  784. $2=_st($1)._nextPutAll_(", [");
  785. _st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
  786. return smalltalk.withContext(function($ctx2) {
  787. return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
  788. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  789. return smalltalk.withContext(function($ctx2) {
  790. return _st(aStream)._nextPutAll_(", ");
  791. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  792. $3=aStream;
  793. _st($3)._nextPutAll_("], '");
  794. _st($3)._nextPutAll_(_st(_st(aClass)._category()).__comma("'"));
  795. $4=_st($3)._nextPutAll_(");");
  796. $5=_st(_st(aClass)._comment())._notEmpty();
  797. if(smalltalk.assert($5)){
  798. $6=aStream;
  799. _st($6)._lf();
  800. _st($6)._nextPutAll_("smalltalk.");
  801. _st($6)._nextPutAll_(self._classNameFor_(aClass));
  802. _st($6)._nextPutAll_(".comment=");
  803. _st($6)._nextPutAll_(_st(_st(aClass)._comment())._asJavascript());
  804. $7=_st($6)._nextPutAll_(";");
  805. $7;
  806. };
  807. _st(aStream)._lf();
  808. return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.Exporter)})},
  809. args: ["aClass", "aStream"],
  810. source: "exportDefinitionOf: aClass on: aStream\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.addClass(';\x0a\x09\x09nextPutAll: '''', (self classNameFor: aClass), ''', ';\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ', ['.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ', '].\x0a\x09aStream\x0a\x09\x09nextPutAll: '], ''';\x0a\x09\x09nextPutAll: aClass category, '''';\x0a\x09\x09nextPutAll: ');'.\x0a\x09aClass comment notEmpty ifTrue: [\x0a\x09\x09aStream\x0a\x09\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.';\x0a\x09\x09nextPutAll: (self classNameFor: aClass);\x0a\x09\x09nextPutAll: '.comment=';\x0a\x09\x09nextPutAll: aClass comment asJavascript;\x0a\x09\x09nextPutAll: ';'].\x0a\x09aStream lf",
  811. messageSends: ["lf", "nextPutAll:", ",", "classNameFor:", "superclass", "do:separatedBy:", "instanceVariableNames", "category", "ifTrue:", "asJavascript", "comment", "notEmpty"],
  812. referencedClasses: []
  813. }),
  814. smalltalk.Exporter);
  815. smalltalk.addMethod(
  816. smalltalk.method({
  817. selector: "exportMetaDefinitionOf:on:",
  818. category: 'output',
  819. fn: function (aClass,aStream){
  820. var self=this;
  821. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  822. return smalltalk.withContext(function($ctx1) {
  823. var $1,$2,$3;
  824. _st(aStream)._lf();
  825. $1=_st(_st(_st(aClass)._class())._instanceVariableNames())._isEmpty();
  826. if(! smalltalk.assert($1)){
  827. $2=aStream;
  828. _st($2)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._class())));
  829. $3=_st($2)._nextPutAll_(".iVarNames = [");
  830. $3;
  831. _st(_st(_st(aClass)._class())._instanceVariableNames())._do_separatedBy_((function(each){
  832. return smalltalk.withContext(function($ctx2) {
  833. return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
  834. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  835. return smalltalk.withContext(function($ctx2) {
  836. return _st(aStream)._nextPutAll_(",");
  837. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  838. _st(aStream)._nextPutAll_("];".__comma(_st($String())._lf()));
  839. };
  840. return self}, function($ctx1) {$ctx1.fill(self,"exportMetaDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.Exporter)})},
  841. args: ["aClass", "aStream"],
  842. source: "exportMetaDefinitionOf: aClass on: aStream\x0a\x09aStream lf.\x0a\x09aClass class instanceVariableNames isEmpty ifFalse: [\x0a\x09\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass class);\x0a\x09\x09nextPutAll: '.iVarNames = ['.\x0a\x09\x09aClass class instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ','].\x0a\x09\x09aStream nextPutAll: '];', String lf]",
  843. messageSends: ["lf", "ifFalse:", "nextPutAll:", ",", "classNameFor:", "class", "do:separatedBy:", "instanceVariableNames", "isEmpty"],
  844. referencedClasses: ["String"]
  845. }),
  846. smalltalk.Exporter);
  847. smalltalk.addMethod(
  848. smalltalk.method({
  849. selector: "exportMethod:on:",
  850. category: 'output',
  851. fn: function (aMethod,aStream){
  852. var self=this;
  853. return smalltalk.withContext(function($ctx1) {
  854. var $1,$2,$3,$4;
  855. $1=aStream;
  856. _st($1)._nextPutAll_("smalltalk.addMethod(");
  857. _st($1)._lf();
  858. _st($1)._nextPutAll_("smalltalk.method({");
  859. _st($1)._lf();
  860. _st($1)._nextPutAll_(_st("selector: ".__comma(_st(_st(aMethod)._selector())._asJavascript())).__comma(","));
  861. _st($1)._lf();
  862. _st($1)._nextPutAll_(_st("category: '".__comma(_st(aMethod)._category())).__comma("',"));
  863. _st($1)._lf();
  864. _st($1)._nextPutAll_(_st("fn: ".__comma(_st(_st(aMethod)._fn())._compiledSource())).__comma(","));
  865. _st($1)._lf();
  866. _st($1)._nextPutAll_(_st("args: ".__comma(_st(_st(aMethod)._arguments())._asJavascript())).__comma(","));
  867. _st($1)._lf();
  868. _st($1)._nextPutAll_(_st("source: ".__comma(_st(_st(aMethod)._source())._asJavascript())).__comma(","));
  869. _st($1)._lf();
  870. _st($1)._nextPutAll_(_st("messageSends: ".__comma(_st(_st(aMethod)._messageSends())._asJavascript())).__comma(","));
  871. _st($1)._lf();
  872. $2=_st($1)._nextPutAll_("referencedClasses: ".__comma(_st(_st(aMethod)._referencedClasses())._asJavascript()));
  873. $3=aStream;
  874. _st($3)._lf();
  875. _st($3)._nextPutAll_("}),");
  876. _st($3)._lf();
  877. _st($3)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aMethod)._methodClass())));
  878. _st($3)._nextPutAll_(");");
  879. _st($3)._lf();
  880. $4=_st($3)._lf();
  881. return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.Exporter)})},
  882. args: ["aMethod", "aStream"],
  883. source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addMethod(';lf;\x0a\x09\x09\x22nextPutAll: aMethod selector asSelector asJavascript, ',';lf;\x22\x0a\x09\x09nextPutAll: 'smalltalk.method({';lf;\x0a\x09\x09nextPutAll: 'selector: ', aMethod selector asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'category: ''', aMethod category, ''',';lf;\x0a\x09\x09nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;\x0a\x09\x09nextPutAll: 'args: ', aMethod arguments asJavascript, ','; lf;\x0a\x09\x09nextPutAll: 'source: ', aMethod source asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'messageSends: ', aMethod messageSends asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'referencedClasses: ', aMethod referencedClasses asJavascript.\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: '}),';lf;\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aMethod methodClass);\x0a\x09\x09nextPutAll: ');';lf;lf",
  884. messageSends: ["nextPutAll:", "lf", ",", "asJavascript", "selector", "category", "compiledSource", "fn", "arguments", "source", "messageSends", "referencedClasses", "classNameFor:", "methodClass"],
  885. referencedClasses: []
  886. }),
  887. smalltalk.Exporter);
  888. smalltalk.addMethod(
  889. smalltalk.method({
  890. selector: "exportPackageDefinitionOf:on:",
  891. category: 'output',
  892. fn: function (aPackage,aStream){
  893. var self=this;
  894. return smalltalk.withContext(function($ctx1) {
  895. var $1,$2;
  896. $1=aStream;
  897. _st($1)._nextPutAll_("smalltalk.addPackage(");
  898. _st($1)._nextPutAll_(_st("'".__comma(_st(aPackage)._name())).__comma("');"));
  899. $2=_st($1)._lf();
  900. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageDefinitionOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.Exporter)})},
  901. args: ["aPackage", "aStream"],
  902. source: "exportPackageDefinitionOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addPackage(';\x0a\x09\x09nextPutAll: '''', aPackage name, ''');';\x0a\x09\x09lf",
  903. messageSends: ["nextPutAll:", ",", "name", "lf"],
  904. referencedClasses: []
  905. }),
  906. smalltalk.Exporter);
  907. smalltalk.addMethod(
  908. smalltalk.method({
  909. selector: "exportPackageEpilogueOf:on:",
  910. category: 'output',
  911. fn: function (aPackage,aStream){
  912. var self=this;
  913. return smalltalk.withContext(function($ctx1) {
  914. var $1,$2;
  915. $1=aStream;
  916. _st($1)._nextPutAll_("})(global_smalltalk,global_nil,global__st);");
  917. $2=_st($1)._lf();
  918. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageEpilogueOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.Exporter)})},
  919. args: ["aPackage", "aStream"],
  920. source: "exportPackageEpilogueOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '})(global_smalltalk,global_nil,global__st);';\x0a\x09\x09lf",
  921. messageSends: ["nextPutAll:", "lf"],
  922. referencedClasses: []
  923. }),
  924. smalltalk.Exporter);
  925. smalltalk.addMethod(
  926. smalltalk.method({
  927. selector: "exportPackagePrologueOf:on:",
  928. category: 'output',
  929. fn: function (aPackage,aStream){
  930. var self=this;
  931. return smalltalk.withContext(function($ctx1) {
  932. var $1,$2;
  933. $1=aStream;
  934. _st($1)._nextPutAll_("(function(smalltalk,nil,_st){");
  935. $2=_st($1)._lf();
  936. return self}, function($ctx1) {$ctx1.fill(self,"exportPackagePrologueOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.Exporter)})},
  937. args: ["aPackage", "aStream"],
  938. source: "exportPackagePrologueOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '(function(smalltalk,nil,_st){';\x0a\x09\x09lf",
  939. messageSends: ["nextPutAll:", "lf"],
  940. referencedClasses: []
  941. }),
  942. smalltalk.Exporter);
  943. smalltalk.addMethod(
  944. smalltalk.method({
  945. selector: "extensionMethodsOfPackage:",
  946. category: 'accessing',
  947. fn: function (aPackage){
  948. var self=this;
  949. var name,result;
  950. function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  951. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  952. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  953. return smalltalk.withContext(function($ctx1) {
  954. var $1;
  955. name=_st(aPackage)._name();
  956. result=_st($OrderedCollection())._new();
  957. _st(_st($Package())._sortedClasses_(_st(_st($Smalltalk())._current())._classes()))._do_((function(each){
  958. return smalltalk.withContext(function($ctx2) {
  959. return _st([each,_st(each)._class()])._do_((function(aClass){
  960. return smalltalk.withContext(function($ctx3) {
  961. return _st(result)._addAll_(_st(_st(_st(_st(aClass)._methodDictionary())._values())._sorted_((function(a,b){
  962. return smalltalk.withContext(function($ctx4) {
  963. return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
  964. }, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx3)})})))._select_((function(method){
  965. return smalltalk.withContext(function($ctx4) {
  966. return _st(_st(method)._category())._match_("^\x5c*".__comma(name));
  967. }, function($ctx4) {$ctx4.fillBlock({method:method},$ctx3)})})));
  968. }, function($ctx3) {$ctx3.fillBlock({aClass:aClass},$ctx2)})}));
  969. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  970. $1=result;
  971. return $1;
  972. }, function($ctx1) {$ctx1.fill(self,"extensionMethodsOfPackage:",{aPackage:aPackage,name:name,result:result},smalltalk.Exporter)})},
  973. args: ["aPackage"],
  974. source: "extensionMethodsOfPackage: aPackage\x0a\x09\x22Issue #143: sort classes and methods alphabetically\x22\x0a\x0a\x09| name result |\x0a\x09name := aPackage name.\x0a\x09result := OrderedCollection new.\x0a\x09(Package sortedClasses: Smalltalk current classes) do: [:each |\x0a\x09\x09{each. each class} do: [:aClass |\x0a\x09\x09\x09result addAll: (((aClass methodDictionary values)\x0a\x09\x09\x09\x09sorted: [:a :b | a selector <= b selector])\x0a\x09\x09\x09\x09select: [:method | method category match: '^\x5c*', name]) ]].\x0a\x09^result",
  975. messageSends: ["name", "new", "do:", "addAll:", "select:", "match:", ",", "category", "sorted:", "<=", "selector", "values", "methodDictionary", "class", "sortedClasses:", "classes", "current"],
  976. referencedClasses: ["OrderedCollection", "Smalltalk", "Package"]
  977. }),
  978. smalltalk.Exporter);
  979. smalltalk.addMethod(
  980. smalltalk.method({
  981. selector: "ownMethodsOfClass:",
  982. category: 'accessing',
  983. fn: function (aClass){
  984. var self=this;
  985. return smalltalk.withContext(function($ctx1) {
  986. var $1;
  987. $1=_st(_st(_st(_st(aClass)._methodDictionary())._values())._sorted_((function(a,b){
  988. return smalltalk.withContext(function($ctx2) {
  989. return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
  990. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._reject_((function(each){
  991. return smalltalk.withContext(function($ctx2) {
  992. return _st(_st(each)._category())._match_("^\x5c*");
  993. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  994. return $1;
  995. }, function($ctx1) {$ctx1.fill(self,"ownMethodsOfClass:",{aClass:aClass},smalltalk.Exporter)})},
  996. args: ["aClass"],
  997. source: "ownMethodsOfClass: aClass\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^((aClass methodDictionary values) sorted: [:a :b | a selector <= b selector])\x0a\x09\x09reject: [:each | (each category match: '^\x5c*')]",
  998. messageSends: ["reject:", "match:", "category", "sorted:", "<=", "selector", "values", "methodDictionary"],
  999. referencedClasses: []
  1000. }),
  1001. smalltalk.Exporter);
  1002. smalltalk.addMethod(
  1003. smalltalk.method({
  1004. selector: "ownMethodsOfMetaClass:",
  1005. category: 'accessing',
  1006. fn: function (aClass){
  1007. var self=this;
  1008. return smalltalk.withContext(function($ctx1) {
  1009. var $1;
  1010. $1=self._ownMethodsOfClass_(_st(aClass)._class());
  1011. return $1;
  1012. }, function($ctx1) {$ctx1.fill(self,"ownMethodsOfMetaClass:",{aClass:aClass},smalltalk.Exporter)})},
  1013. args: ["aClass"],
  1014. source: "ownMethodsOfMetaClass: aClass\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^self ownMethodsOfClass: aClass class",
  1015. messageSends: ["ownMethodsOfClass:", "class"],
  1016. referencedClasses: []
  1017. }),
  1018. smalltalk.Exporter);
  1019. smalltalk.addMethod(
  1020. smalltalk.method({
  1021. selector: "recipe",
  1022. category: 'fileOut',
  1023. fn: function (){
  1024. var self=this;
  1025. function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
  1026. return smalltalk.withContext(function($ctx1) {
  1027. var $1;
  1028. $1=[self.__minus_gt("exportPackagePrologueOf:on:"),self.__minus_gt("exportPackageDefinitionOf:on:"),[_st($PluggableExporter()).__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfClass:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportMetaDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfMetaClass:"),self.__minus_gt("exportMethod:on:")]],[self.__minus_gt("extensionMethodsOfPackage:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportPackageEpilogueOf:on:")];
  1029. return $1;
  1030. }, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.Exporter)})},
  1031. args: [],
  1032. source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09^{\x0a\x09\x09self -> #exportPackagePrologueOf:on:.\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09PluggableExporter -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfMetaClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: } }.\x0a\x09\x09{\x0a\x09\x09\x09self -> #extensionMethodsOfPackage:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09self -> #exportPackageEpilogueOf:on:\x0a\x09}",
  1033. messageSends: ["->"],
  1034. referencedClasses: ["PluggableExporter"]
  1035. }),
  1036. smalltalk.Exporter);
  1037. smalltalk.addMethod(
  1038. smalltalk.method({
  1039. selector: "classNameFor:",
  1040. category: 'private',
  1041. fn: function (aClass){
  1042. var self=this;
  1043. return smalltalk.withContext(function($ctx1) {
  1044. var $2,$3,$1;
  1045. $2=_st(aClass)._isMetaclass();
  1046. if(smalltalk.assert($2)){
  1047. $1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(".klass");
  1048. } else {
  1049. $3=_st(aClass)._isNil();
  1050. if(smalltalk.assert($3)){
  1051. $1="nil";
  1052. } else {
  1053. $1=_st(aClass)._name();
  1054. };
  1055. };
  1056. return $1;
  1057. }, function($ctx1) {$ctx1.fill(self,"classNameFor:",{aClass:aClass},smalltalk.Exporter.klass)})},
  1058. args: ["aClass"],
  1059. source: "classNameFor: aClass\x0a\x09^aClass isMetaclass\x0a\x09\x09ifTrue: [aClass instanceClass name, '.klass']\x0a\x09\x09ifFalse: [\x0a\x09\x09aClass isNil\x0a\x09\x09\x09ifTrue: ['nil']\x0a\x09\x09\x09ifFalse: [aClass name]]",
  1060. messageSends: ["ifTrue:ifFalse:", ",", "name", "instanceClass", "isNil", "isMetaclass"],
  1061. referencedClasses: []
  1062. }),
  1063. smalltalk.Exporter.klass);
  1064. smalltalk.addMethod(
  1065. smalltalk.method({
  1066. selector: "exportDefinitionOf:on:",
  1067. category: 'exporting-output',
  1068. fn: function (aClass,aStream){
  1069. var self=this;
  1070. return smalltalk.withContext(function($ctx1) {
  1071. var $1,$2,$3,$4,$5,$6,$7;
  1072. $1=aStream;
  1073. _st($1)._lf();
  1074. _st($1)._nextPutAll_("smalltalk.addClass(");
  1075. _st($1)._nextPutAll_(_st("'".__comma(self._classNameFor_(aClass))).__comma("', "));
  1076. _st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._superclass())));
  1077. $2=_st($1)._nextPutAll_(", [");
  1078. _st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
  1079. return smalltalk.withContext(function($ctx2) {
  1080. return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
  1081. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  1082. return smalltalk.withContext(function($ctx2) {
  1083. return _st(aStream)._nextPutAll_(", ");
  1084. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1085. $3=aStream;
  1086. _st($3)._nextPutAll_("], '");
  1087. _st($3)._nextPutAll_(_st(_st(aClass)._category()).__comma("'"));
  1088. $4=_st($3)._nextPutAll_(");");
  1089. $5=_st(_st(aClass)._comment())._notEmpty();
  1090. if(smalltalk.assert($5)){
  1091. $6=aStream;
  1092. _st($6)._lf();
  1093. _st($6)._nextPutAll_("smalltalk.");
  1094. _st($6)._nextPutAll_(self._classNameFor_(aClass));
  1095. _st($6)._nextPutAll_(".comment=");
  1096. _st($6)._nextPutAll_(_st(_st(aClass)._comment())._asJavascript());
  1097. $7=_st($6)._nextPutAll_(";");
  1098. $7;
  1099. };
  1100. _st(aStream)._lf();
  1101. return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.Exporter.klass)})},
  1102. args: ["aClass", "aStream"],
  1103. source: "exportDefinitionOf: aClass on: aStream\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.addClass(';\x0a\x09\x09nextPutAll: '''', (self classNameFor: aClass), ''', ';\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ', ['.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ', '].\x0a\x09aStream\x0a\x09\x09nextPutAll: '], ''';\x0a\x09\x09nextPutAll: aClass category, '''';\x0a\x09\x09nextPutAll: ');'.\x0a\x09aClass comment notEmpty ifTrue: [\x0a\x09\x09aStream\x0a\x09\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.';\x0a\x09\x09nextPutAll: (self classNameFor: aClass);\x0a\x09\x09nextPutAll: '.comment=';\x0a\x09\x09nextPutAll: aClass comment asJavascript;\x0a\x09\x09nextPutAll: ';'].\x0a\x09aStream lf",
  1104. messageSends: ["lf", "nextPutAll:", ",", "classNameFor:", "superclass", "do:separatedBy:", "instanceVariableNames", "category", "ifTrue:", "asJavascript", "comment", "notEmpty"],
  1105. referencedClasses: []
  1106. }),
  1107. smalltalk.Exporter.klass);
  1108. smalltalk.addMethod(
  1109. smalltalk.method({
  1110. selector: "exportMetaDefinitionOf:on:",
  1111. category: 'exporting-output',
  1112. fn: function (aClass,aStream){
  1113. var self=this;
  1114. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  1115. return smalltalk.withContext(function($ctx1) {
  1116. var $1,$2,$3;
  1117. _st(aStream)._lf();
  1118. $1=_st(_st(_st(aClass)._class())._instanceVariableNames())._isEmpty();
  1119. if(! smalltalk.assert($1)){
  1120. $2=aStream;
  1121. _st($2)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._class())));
  1122. $3=_st($2)._nextPutAll_(".iVarNames = [");
  1123. $3;
  1124. _st(_st(_st(aClass)._class())._instanceVariableNames())._do_separatedBy_((function(each){
  1125. return smalltalk.withContext(function($ctx2) {
  1126. return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
  1127. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  1128. return smalltalk.withContext(function($ctx2) {
  1129. return _st(aStream)._nextPutAll_(",");
  1130. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1131. _st(aStream)._nextPutAll_("];".__comma(_st($String())._lf()));
  1132. };
  1133. return self}, function($ctx1) {$ctx1.fill(self,"exportMetaDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.Exporter.klass)})},
  1134. args: ["aClass", "aStream"],
  1135. source: "exportMetaDefinitionOf: aClass on: aStream\x0a\x09aStream lf.\x0a\x09aClass class instanceVariableNames isEmpty ifFalse: [\x0a\x09\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass class);\x0a\x09\x09nextPutAll: '.iVarNames = ['.\x0a\x09\x09aClass class instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ','].\x0a\x09\x09aStream nextPutAll: '];', String lf]",
  1136. messageSends: ["lf", "ifFalse:", "nextPutAll:", ",", "classNameFor:", "class", "do:separatedBy:", "instanceVariableNames", "isEmpty"],
  1137. referencedClasses: ["String"]
  1138. }),
  1139. smalltalk.Exporter.klass);
  1140. smalltalk.addMethod(
  1141. smalltalk.method({
  1142. selector: "exportMethod:on:",
  1143. category: 'exporting-output',
  1144. fn: function (aMethod,aStream){
  1145. var self=this;
  1146. return smalltalk.withContext(function($ctx1) {
  1147. var $1,$2,$3,$4;
  1148. $1=aStream;
  1149. _st($1)._nextPutAll_("smalltalk.addMethod(");
  1150. _st($1)._lf();
  1151. _st($1)._nextPutAll_("smalltalk.method({");
  1152. _st($1)._lf();
  1153. _st($1)._nextPutAll_(_st("selector: ".__comma(_st(_st(aMethod)._selector())._asJavascript())).__comma(","));
  1154. _st($1)._lf();
  1155. _st($1)._nextPutAll_(_st("category: '".__comma(_st(aMethod)._category())).__comma("',"));
  1156. _st($1)._lf();
  1157. _st($1)._nextPutAll_(_st("fn: ".__comma(_st(_st(aMethod)._fn())._compiledSource())).__comma(","));
  1158. _st($1)._lf();
  1159. _st($1)._nextPutAll_(_st("args: ".__comma(_st(_st(aMethod)._arguments())._asJavascript())).__comma(","));
  1160. _st($1)._lf();
  1161. _st($1)._nextPutAll_(_st("source: ".__comma(_st(_st(aMethod)._source())._asJavascript())).__comma(","));
  1162. _st($1)._lf();
  1163. _st($1)._nextPutAll_(_st("messageSends: ".__comma(_st(_st(aMethod)._messageSends())._asJavascript())).__comma(","));
  1164. _st($1)._lf();
  1165. $2=_st($1)._nextPutAll_("referencedClasses: ".__comma(_st(_st(aMethod)._referencedClasses())._asJavascript()));
  1166. $3=aStream;
  1167. _st($3)._lf();
  1168. _st($3)._nextPutAll_("}),");
  1169. _st($3)._lf();
  1170. _st($3)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aMethod)._methodClass())));
  1171. _st($3)._nextPutAll_(");");
  1172. _st($3)._lf();
  1173. $4=_st($3)._lf();
  1174. return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.Exporter.klass)})},
  1175. args: ["aMethod", "aStream"],
  1176. source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addMethod(';lf;\x0a\x09\x09\x22nextPutAll: aMethod selector asSelector asJavascript, ',';lf;\x22\x0a\x09\x09nextPutAll: 'smalltalk.method({';lf;\x0a\x09\x09nextPutAll: 'selector: ', aMethod selector asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'category: ''', aMethod category, ''',';lf;\x0a\x09\x09nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;\x0a\x09\x09nextPutAll: 'args: ', aMethod arguments asJavascript, ','; lf;\x0a\x09\x09nextPutAll: 'source: ', aMethod source asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'messageSends: ', aMethod messageSends asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'referencedClasses: ', aMethod referencedClasses asJavascript.\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: '}),';lf;\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aMethod methodClass);\x0a\x09\x09nextPutAll: ');';lf;lf",
  1177. messageSends: ["nextPutAll:", "lf", ",", "asJavascript", "selector", "category", "compiledSource", "fn", "arguments", "source", "messageSends", "referencedClasses", "classNameFor:", "methodClass"],
  1178. referencedClasses: []
  1179. }),
  1180. smalltalk.Exporter.klass);
  1181. smalltalk.addMethod(
  1182. smalltalk.method({
  1183. selector: "exportPackageDefinitionOf:on:",
  1184. category: 'exporting-output',
  1185. fn: function (package_,aStream){
  1186. var self=this;
  1187. return smalltalk.withContext(function($ctx1) {
  1188. var $1,$2;
  1189. $1=aStream;
  1190. _st($1)._nextPutAll_("smalltalk.addPackage(");
  1191. _st($1)._nextPutAll_(_st("'".__comma(_st(package_)._name())).__comma("');"));
  1192. $2=_st($1)._lf();
  1193. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageDefinitionOf:on:",{package_:package_,aStream:aStream},smalltalk.Exporter.klass)})},
  1194. args: ["package", "aStream"],
  1195. source: "exportPackageDefinitionOf: package on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addPackage(';\x0a\x09\x09nextPutAll: '''', package name, ''');';\x0a\x09\x09lf",
  1196. messageSends: ["nextPutAll:", ",", "name", "lf"],
  1197. referencedClasses: []
  1198. }),
  1199. smalltalk.Exporter.klass);
  1200. smalltalk.addMethod(
  1201. smalltalk.method({
  1202. selector: "exportPackageEpilogueOf:on:",
  1203. category: 'exporting-output',
  1204. fn: function (aPackage,aStream){
  1205. var self=this;
  1206. return smalltalk.withContext(function($ctx1) {
  1207. var $1,$2;
  1208. $1=aStream;
  1209. _st($1)._nextPutAll_("})(global_smalltalk,global_nil,global__st);");
  1210. $2=_st($1)._lf();
  1211. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageEpilogueOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.Exporter.klass)})},
  1212. args: ["aPackage", "aStream"],
  1213. source: "exportPackageEpilogueOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '})(global_smalltalk,global_nil,global__st);';\x0a\x09\x09lf",
  1214. messageSends: ["nextPutAll:", "lf"],
  1215. referencedClasses: []
  1216. }),
  1217. smalltalk.Exporter.klass);
  1218. smalltalk.addMethod(
  1219. smalltalk.method({
  1220. selector: "exportPackagePrologueOf:on:",
  1221. category: 'exporting-output',
  1222. fn: function (aPackage,aStream){
  1223. var self=this;
  1224. return smalltalk.withContext(function($ctx1) {
  1225. var $1,$2;
  1226. $1=aStream;
  1227. _st($1)._nextPutAll_("(function(smalltalk,nil,_st){");
  1228. $2=_st($1)._lf();
  1229. return self}, function($ctx1) {$ctx1.fill(self,"exportPackagePrologueOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.Exporter.klass)})},
  1230. args: ["aPackage", "aStream"],
  1231. source: "exportPackagePrologueOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '(function(smalltalk,nil,_st){';\x0a\x09\x09lf",
  1232. messageSends: ["nextPutAll:", "lf"],
  1233. referencedClasses: []
  1234. }),
  1235. smalltalk.Exporter.klass);
  1236. smalltalk.addMethod(
  1237. smalltalk.method({
  1238. selector: "extensionMethodsOfPackage:",
  1239. category: 'exporting-accessing',
  1240. fn: function (package_){
  1241. var self=this;
  1242. var name,result;
  1243. function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
  1244. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  1245. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  1246. return smalltalk.withContext(function($ctx1) {
  1247. var $1;
  1248. name=_st(package_)._name();
  1249. result=_st($OrderedCollection())._new();
  1250. _st(_st($Package())._sortedClasses_(_st(_st($Smalltalk())._current())._classes()))._do_((function(each){
  1251. return smalltalk.withContext(function($ctx2) {
  1252. return _st([each,_st(each)._class()])._do_((function(aClass){
  1253. return smalltalk.withContext(function($ctx3) {
  1254. return _st(result)._addAll_(_st(_st(_st(_st(aClass)._methodDictionary())._values())._sorted_((function(a,b){
  1255. return smalltalk.withContext(function($ctx4) {
  1256. return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
  1257. }, function($ctx4) {$ctx4.fillBlock({a:a,b:b},$ctx3)})})))._select_((function(method){
  1258. return smalltalk.withContext(function($ctx4) {
  1259. return _st(_st(method)._category())._match_("^\x5c*".__comma(name));
  1260. }, function($ctx4) {$ctx4.fillBlock({method:method},$ctx3)})})));
  1261. }, function($ctx3) {$ctx3.fillBlock({aClass:aClass},$ctx2)})}));
  1262. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1263. $1=result;
  1264. return $1;
  1265. }, function($ctx1) {$ctx1.fill(self,"extensionMethodsOfPackage:",{package_:package_,name:name,result:result},smalltalk.Exporter.klass)})},
  1266. args: ["package"],
  1267. source: "extensionMethodsOfPackage: package\x0a\x09\x22Issue #143: sort classes and methods alphabetically\x22\x0a\x0a\x09| name result |\x0a\x09name := package name.\x0a\x09result := OrderedCollection new.\x0a\x09(Package sortedClasses: Smalltalk current classes) do: [:each |\x0a\x09\x09{each. each class} do: [:aClass |\x0a\x09\x09\x09result addAll: (((aClass methodDictionary values)\x0a\x09\x09\x09\x09sorted: [:a :b | a selector <= b selector])\x0a\x09\x09\x09\x09select: [:method | method category match: '^\x5c*', name]) ]].\x0a\x09^result",
  1268. messageSends: ["name", "new", "do:", "addAll:", "select:", "match:", ",", "category", "sorted:", "<=", "selector", "values", "methodDictionary", "class", "sortedClasses:", "classes", "current"],
  1269. referencedClasses: ["OrderedCollection", "Smalltalk", "Package"]
  1270. }),
  1271. smalltalk.Exporter.klass);
  1272. smalltalk.addMethod(
  1273. smalltalk.method({
  1274. selector: "ownMethodsOfClass:",
  1275. category: 'exporting-accessing',
  1276. fn: function (aClass){
  1277. var self=this;
  1278. return smalltalk.withContext(function($ctx1) {
  1279. var $1;
  1280. $1=_st(_st(_st(_st(aClass)._methodDictionary())._values())._sorted_((function(a,b){
  1281. return smalltalk.withContext(function($ctx2) {
  1282. return _st(_st(a)._selector()).__lt_eq(_st(b)._selector());
  1283. }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})})))._reject_((function(each){
  1284. return smalltalk.withContext(function($ctx2) {
  1285. return _st(_st(each)._category())._match_("^\x5c*");
  1286. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1287. return $1;
  1288. }, function($ctx1) {$ctx1.fill(self,"ownMethodsOfClass:",{aClass:aClass},smalltalk.Exporter.klass)})},
  1289. args: ["aClass"],
  1290. source: "ownMethodsOfClass: aClass\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^((aClass methodDictionary values) sorted: [:a :b | a selector <= b selector])\x0a\x09\x09reject: [:each | (each category match: '^\x5c*')]",
  1291. messageSends: ["reject:", "match:", "category", "sorted:", "<=", "selector", "values", "methodDictionary"],
  1292. referencedClasses: []
  1293. }),
  1294. smalltalk.Exporter.klass);
  1295. smalltalk.addMethod(
  1296. smalltalk.method({
  1297. selector: "ownMethodsOfMetaClass:",
  1298. category: 'exporting-accessing',
  1299. fn: function (aClass){
  1300. var self=this;
  1301. return smalltalk.withContext(function($ctx1) {
  1302. var $1;
  1303. $1=self._ownMethodsOfClass_(_st(aClass)._class());
  1304. return $1;
  1305. }, function($ctx1) {$ctx1.fill(self,"ownMethodsOfMetaClass:",{aClass:aClass},smalltalk.Exporter.klass)})},
  1306. args: ["aClass"],
  1307. source: "ownMethodsOfMetaClass: aClass\x0a\x09\x22Issue #143: sort methods alphabetically\x22\x0a\x0a\x09^self ownMethodsOfClass: aClass class",
  1308. messageSends: ["ownMethodsOfClass:", "class"],
  1309. referencedClasses: []
  1310. }),
  1311. smalltalk.Exporter.klass);
  1312. smalltalk.addMethod(
  1313. smalltalk.method({
  1314. selector: "recipe",
  1315. category: 'fileOut',
  1316. fn: function (){
  1317. var self=this;
  1318. function $AmdExporter(){return smalltalk.AmdExporter||(typeof AmdExporter=="undefined"?nil:AmdExporter)}
  1319. function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
  1320. return smalltalk.withContext(function($ctx1) {
  1321. var $1;
  1322. $1=[_st($AmdExporter()).__minus_gt("exportPackagePrologueOf:on:"),self.__minus_gt("exportPackageDefinitionOf:on:"),[_st($PluggableExporter()).__minus_gt("ownClassesOfPackage:"),self.__minus_gt("exportDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfClass:"),self.__minus_gt("exportMethod:on:")],self.__minus_gt("exportMetaDefinitionOf:on:"),[self.__minus_gt("ownMethodsOfMetaClass:"),self.__minus_gt("exportMethod:on:")]],[self.__minus_gt("extensionMethodsOfPackage:"),self.__minus_gt("exportMethod:on:")],_st($AmdExporter()).__minus_gt("exportPackageEpilogueOf:on:")];
  1323. return $1;
  1324. }, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.Exporter.klass)})},
  1325. args: [],
  1326. source: "recipe\x0a\x09\x22Export a given package.\x22\x0a\x0a\x09^{\x0a\x09\x09AmdExporter -> #exportPackagePrologueOf:on:.\x0a\x09\x09self -> #exportPackageDefinitionOf:on:.\x0a\x09\x09{\x0a\x09\x09\x09PluggableExporter -> #ownClassesOfPackage:.\x0a\x09\x09\x09self -> #exportDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09\x09self -> #exportMetaDefinitionOf:on:.\x0a\x09\x09\x09{\x0a\x09\x09\x09\x09self -> #ownMethodsOfMetaClass:.\x0a\x09\x09\x09\x09self -> #exportMethod:on: } }.\x0a\x09\x09{\x0a\x09\x09\x09self -> #extensionMethodsOfPackage:.\x0a\x09\x09\x09self -> #exportMethod:on: }.\x0a\x09\x09AmdExporter -> #exportPackageEpilogueOf:on:\x0a\x09}",
  1327. messageSends: ["->"],
  1328. referencedClasses: ["AmdExporter", "PluggableExporter"]
  1329. }),
  1330. smalltalk.Exporter.klass);
  1331. smalltalk.addClass('StrippedExporter', smalltalk.Exporter, [], 'Importer-Exporter');
  1332. smalltalk.StrippedExporter.comment="I export Amber code into a JavaScript string, but without any optional associated data like the Amber source code.";
  1333. smalltalk.addMethod(
  1334. smalltalk.method({
  1335. selector: "exportDefinitionOf:on:",
  1336. category: 'output',
  1337. fn: function (aClass,aStream){
  1338. var self=this;
  1339. return smalltalk.withContext(function($ctx1) {
  1340. var $1,$2,$3,$4;
  1341. $1=aStream;
  1342. _st($1)._lf();
  1343. _st($1)._nextPutAll_("smalltalk.addClass(");
  1344. _st($1)._nextPutAll_(_st("'".__comma(self._classNameFor_(aClass))).__comma("', "));
  1345. _st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._superclass())));
  1346. $2=_st($1)._nextPutAll_(", [");
  1347. _st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
  1348. return smalltalk.withContext(function($ctx2) {
  1349. return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
  1350. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  1351. return smalltalk.withContext(function($ctx2) {
  1352. return _st(aStream)._nextPutAll_(", ");
  1353. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1354. $3=aStream;
  1355. _st($3)._nextPutAll_("], '");
  1356. _st($3)._nextPutAll_(_st(_st(aClass)._category()).__comma("'"));
  1357. $4=_st($3)._nextPutAll_(");");
  1358. _st(aStream)._lf();
  1359. return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.StrippedExporter)})},
  1360. args: ["aClass", "aStream"],
  1361. source: "exportDefinitionOf: aClass on: aStream\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.addClass(';\x0a\x09\x09nextPutAll: '''', (self classNameFor: aClass), ''', ';\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ', ['.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ', '].\x0a\x09aStream\x0a\x09\x09nextPutAll: '], ''';\x0a\x09\x09nextPutAll: aClass category, '''';\x0a\x09\x09nextPutAll: ');'.\x0a\x09aStream lf",
  1362. messageSends: ["lf", "nextPutAll:", ",", "classNameFor:", "superclass", "do:separatedBy:", "instanceVariableNames", "category"],
  1363. referencedClasses: []
  1364. }),
  1365. smalltalk.StrippedExporter);
  1366. smalltalk.addMethod(
  1367. smalltalk.method({
  1368. selector: "exportMethod:on:",
  1369. category: 'output',
  1370. fn: function (aMethod,aStream){
  1371. var self=this;
  1372. return smalltalk.withContext(function($ctx1) {
  1373. var $1,$2;
  1374. $1=aStream;
  1375. _st($1)._nextPutAll_("smalltalk.addMethod(");
  1376. _st($1)._lf();
  1377. _st($1)._nextPutAll_("smalltalk.method({");
  1378. _st($1)._lf();
  1379. _st($1)._nextPutAll_(_st("selector: ".__comma(_st(_st(aMethod)._selector())._asJavascript())).__comma(","));
  1380. _st($1)._lf();
  1381. _st($1)._nextPutAll_(_st("fn: ".__comma(_st(_st(aMethod)._fn())._compiledSource())).__comma(","));
  1382. _st($1)._lf();
  1383. _st($1)._nextPutAll_("messageSends: ".__comma(_st(_st(aMethod)._messageSends())._asJavascript()));
  1384. _st($1)._nextPutAll_("}),");
  1385. _st($1)._lf();
  1386. _st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aMethod)._methodClass())));
  1387. _st($1)._nextPutAll_(");");
  1388. _st($1)._lf();
  1389. $2=_st($1)._lf();
  1390. return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.StrippedExporter)})},
  1391. args: ["aMethod", "aStream"],
  1392. source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addMethod(';lf;\x0a\x09\x09\x22nextPutAll: aMethod selector asSelector asJavascript, ',';lf;\x22\x0a\x09\x09nextPutAll: 'smalltalk.method({';lf;\x0a\x09\x09nextPutAll: 'selector: ', aMethod selector asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;\x0a\x09\x09nextPutAll: 'messageSends: ', aMethod messageSends asJavascript;\x0a\x09\x09nextPutAll: '}),';lf;\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aMethod methodClass);\x0a\x09\x09nextPutAll: ');';lf;lf",
  1393. messageSends: ["nextPutAll:", "lf", ",", "asJavascript", "selector", "compiledSource", "fn", "messageSends", "classNameFor:", "methodClass"],
  1394. referencedClasses: []
  1395. }),
  1396. smalltalk.StrippedExporter);
  1397. smalltalk.addMethod(
  1398. smalltalk.method({
  1399. selector: "exportDefinitionOf:on:",
  1400. category: 'exporting-output',
  1401. fn: function (aClass,aStream){
  1402. var self=this;
  1403. return smalltalk.withContext(function($ctx1) {
  1404. var $1,$2,$3,$4;
  1405. $1=aStream;
  1406. _st($1)._lf();
  1407. _st($1)._nextPutAll_("smalltalk.addClass(");
  1408. _st($1)._nextPutAll_(_st("'".__comma(self._classNameFor_(aClass))).__comma("', "));
  1409. _st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aClass)._superclass())));
  1410. $2=_st($1)._nextPutAll_(", [");
  1411. _st(_st(aClass)._instanceVariableNames())._do_separatedBy_((function(each){
  1412. return smalltalk.withContext(function($ctx2) {
  1413. return _st(aStream)._nextPutAll_(_st("'".__comma(each)).__comma("'"));
  1414. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}),(function(){
  1415. return smalltalk.withContext(function($ctx2) {
  1416. return _st(aStream)._nextPutAll_(", ");
  1417. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1418. $3=aStream;
  1419. _st($3)._nextPutAll_("], '");
  1420. _st($3)._nextPutAll_(_st(_st(aClass)._category()).__comma("'"));
  1421. $4=_st($3)._nextPutAll_(");");
  1422. _st(aStream)._lf();
  1423. return self}, function($ctx1) {$ctx1.fill(self,"exportDefinitionOf:on:",{aClass:aClass,aStream:aStream},smalltalk.StrippedExporter.klass)})},
  1424. args: ["aClass", "aStream"],
  1425. source: "exportDefinitionOf: aClass on: aStream\x0a\x09aStream\x0a\x09\x09lf;\x0a\x09\x09nextPutAll: 'smalltalk.addClass(';\x0a\x09\x09nextPutAll: '''', (self classNameFor: aClass), ''', ';\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aClass superclass);\x0a\x09\x09nextPutAll: ', ['.\x0a\x09aClass instanceVariableNames\x0a\x09\x09do: [:each | aStream nextPutAll: '''', each, '''']\x0a\x09\x09separatedBy: [aStream nextPutAll: ', '].\x0a\x09aStream\x0a\x09\x09nextPutAll: '], ''';\x0a\x09\x09nextPutAll: aClass category, '''';\x0a\x09\x09nextPutAll: ');'.\x0a\x09aStream lf",
  1426. messageSends: ["lf", "nextPutAll:", ",", "classNameFor:", "superclass", "do:separatedBy:", "instanceVariableNames", "category"],
  1427. referencedClasses: []
  1428. }),
  1429. smalltalk.StrippedExporter.klass);
  1430. smalltalk.addMethod(
  1431. smalltalk.method({
  1432. selector: "exportMethod:on:",
  1433. category: 'exporting-output',
  1434. fn: function (aMethod,aStream){
  1435. var self=this;
  1436. return smalltalk.withContext(function($ctx1) {
  1437. var $1,$2;
  1438. $1=aStream;
  1439. _st($1)._nextPutAll_("smalltalk.addMethod(");
  1440. _st($1)._lf();
  1441. _st($1)._nextPutAll_("smalltalk.method({");
  1442. _st($1)._lf();
  1443. _st($1)._nextPutAll_(_st("selector: ".__comma(_st(_st(aMethod)._selector())._asJavascript())).__comma(","));
  1444. _st($1)._lf();
  1445. _st($1)._nextPutAll_(_st("fn: ".__comma(_st(_st(aMethod)._fn())._compiledSource())).__comma(","));
  1446. _st($1)._lf();
  1447. _st($1)._nextPutAll_("messageSends: ".__comma(_st(_st(aMethod)._messageSends())._asJavascript()));
  1448. _st($1)._nextPutAll_("}),");
  1449. _st($1)._lf();
  1450. _st($1)._nextPutAll_("smalltalk.".__comma(self._classNameFor_(_st(aMethod)._methodClass())));
  1451. _st($1)._nextPutAll_(");");
  1452. _st($1)._lf();
  1453. $2=_st($1)._lf();
  1454. return self}, function($ctx1) {$ctx1.fill(self,"exportMethod:on:",{aMethod:aMethod,aStream:aStream},smalltalk.StrippedExporter.klass)})},
  1455. args: ["aMethod", "aStream"],
  1456. source: "exportMethod: aMethod on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.addMethod(';lf;\x0a\x09\x09\x22nextPutAll: aMethod selector asSelector asJavascript, ',';lf;\x22\x0a\x09\x09nextPutAll: 'smalltalk.method({';lf;\x0a\x09\x09nextPutAll: 'selector: ', aMethod selector asJavascript, ',';lf;\x0a\x09\x09nextPutAll: 'fn: ', aMethod fn compiledSource, ',';lf;\x0a\x09\x09nextPutAll: 'messageSends: ', aMethod messageSends asJavascript;\x0a\x09\x09nextPutAll: '}),';lf;\x0a\x09\x09nextPutAll: 'smalltalk.', (self classNameFor: aMethod methodClass);\x0a\x09\x09nextPutAll: ');';lf;lf",
  1457. messageSends: ["nextPutAll:", "lf", ",", "asJavascript", "selector", "compiledSource", "fn", "messageSends", "classNameFor:", "methodClass"],
  1458. referencedClasses: []
  1459. }),
  1460. smalltalk.StrippedExporter.klass);
  1461. smalltalk.addClass('AmdExporter', smalltalk.Object, [], 'Importer-Exporter');
  1462. smalltalk.addMethod(
  1463. smalltalk.method({
  1464. selector: "amdNamesOfPackages:",
  1465. category: 'private',
  1466. fn: function (anArray){
  1467. var self=this;
  1468. var deps,depNames;
  1469. return smalltalk.withContext(function($ctx1) {
  1470. var $1;
  1471. $1=_st(_st(anArray)._select_((function(each){
  1472. return smalltalk.withContext(function($ctx2) {
  1473. return _st(_st(each)._amdNamespace())._notNil();
  1474. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})))._collect_((function(each){
  1475. return smalltalk.withContext(function($ctx2) {
  1476. return _st(_st(_st(each)._amdNamespace()).__comma("/")).__comma(_st(each)._name());
  1477. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  1478. return $1;
  1479. }, function($ctx1) {$ctx1.fill(self,"amdNamesOfPackages:",{anArray:anArray,deps:deps,depNames:depNames},smalltalk.AmdExporter.klass)})},
  1480. args: ["anArray"],
  1481. source: "amdNamesOfPackages: anArray\x0a\x09| deps depNames |\x0a\x09^(anArray\x0a\x09\x09select: [ :each | each amdNamespace notNil ])\x0a\x09\x09collect: [ :each | each amdNamespace, '/', each name ]",
  1482. messageSends: ["collect:", ",", "name", "amdNamespace", "select:", "notNil"],
  1483. referencedClasses: []
  1484. }),
  1485. smalltalk.AmdExporter.klass);
  1486. smalltalk.addMethod(
  1487. smalltalk.method({
  1488. selector: "exportPackageEpilogueOf:on:",
  1489. category: 'exporting-output',
  1490. fn: function (aPackage,aStream){
  1491. var self=this;
  1492. return smalltalk.withContext(function($ctx1) {
  1493. var $1,$2;
  1494. $1=aStream;
  1495. _st($1)._nextPutAll_("});");
  1496. $2=_st($1)._lf();
  1497. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageEpilogueOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.AmdExporter.klass)})},
  1498. args: ["aPackage", "aStream"],
  1499. source: "exportPackageEpilogueOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: '});';\x0a\x09\x09lf",
  1500. messageSends: ["nextPutAll:", "lf"],
  1501. referencedClasses: []
  1502. }),
  1503. smalltalk.AmdExporter.klass);
  1504. smalltalk.addMethod(
  1505. smalltalk.method({
  1506. selector: "exportPackagePrologueOf:on:",
  1507. category: 'exporting-output',
  1508. fn: function (aPackage,aStream){
  1509. var self=this;
  1510. return smalltalk.withContext(function($ctx1) {
  1511. var $1,$2,$4,$3,$5;
  1512. $1=aStream;
  1513. _st($1)._nextPutAll_("define(\x22");
  1514. $2=$1;
  1515. $4=_st(aPackage)._amdNamespace();
  1516. if(($receiver = $4) == nil || $receiver == undefined){
  1517. $3="amber";
  1518. } else {
  1519. $3=$4;
  1520. };
  1521. _st($2)._nextPutAll_($3);
  1522. _st($1)._nextPutAll_("/");
  1523. _st($1)._nextPutAll_(_st(aPackage)._name());
  1524. _st($1)._nextPutAll_("\x22, ");
  1525. _st($1)._nextPutAll_(_st(["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st"].__comma(self._amdNamesOfPackages_(_st(aPackage)._loadDependencies())))._asJavascript());
  1526. _st($1)._nextPutAll_(", function(smalltalk,nil,_st){");
  1527. $5=_st($1)._lf();
  1528. return self}, function($ctx1) {$ctx1.fill(self,"exportPackagePrologueOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.AmdExporter.klass)})},
  1529. args: ["aPackage", "aStream"],
  1530. source: "exportPackagePrologueOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'define(\x22';\x0a\x09\x09nextPutAll: (aPackage amdNamespace ifNil: [ 'amber' ]); \x22ifNil: only for LegacyPH, it should not happen with AmdPH\x22\x0a\x09\x09nextPutAll: '/';\x0a\x09\x09nextPutAll: aPackage name;\x0a\x09\x09nextPutAll: '\x22, ';\x0a\x09\x09nextPutAll: (#('amber_vm/smalltalk' 'amber_vm/nil' 'amber_vm/_st'), (self amdNamesOfPackages: aPackage loadDependencies)) asJavascript;\x0a\x09\x09nextPutAll: ', function(smalltalk,nil,_st){';\x0a\x09\x09lf",
  1531. messageSends: ["nextPutAll:", "ifNil:", "amdNamespace", "name", "asJavascript", ",", "amdNamesOfPackages:", "loadDependencies", "lf"],
  1532. referencedClasses: []
  1533. }),
  1534. smalltalk.AmdExporter.klass);
  1535. smalltalk.addMethod(
  1536. smalltalk.method({
  1537. selector: "exportPackageTransportOf:on:",
  1538. category: 'exporting-output',
  1539. fn: function (aPackage,aStream){
  1540. var self=this;
  1541. return smalltalk.withContext(function($ctx1) {
  1542. var $1,$2;
  1543. $1=aStream;
  1544. _st($1)._nextPutAll_("smalltalk.packages[");
  1545. _st($1)._nextPutAll_(_st(_st(aPackage)._name())._asJavascript());
  1546. _st($1)._nextPutAll_("].transport = ");
  1547. _st($1)._nextPutAll_(_st(aPackage)._transportJson());
  1548. _st($1)._nextPutAll_(";");
  1549. $2=_st($1)._lf();
  1550. return self}, function($ctx1) {$ctx1.fill(self,"exportPackageTransportOf:on:",{aPackage:aPackage,aStream:aStream},smalltalk.AmdExporter.klass)})},
  1551. args: ["aPackage", "aStream"],
  1552. source: "exportPackageTransportOf: aPackage on: aStream\x0a\x09aStream\x0a\x09\x09nextPutAll: 'smalltalk.packages[';\x0a\x09\x09nextPutAll: aPackage name asJavascript;\x0a\x09\x09nextPutAll: '].transport = ';\x0a\x09\x09nextPutAll: aPackage transportJson;\x0a\x09\x09nextPutAll: ';';\x0a\x09\x09lf",
  1553. messageSends: ["nextPutAll:", "asJavascript", "name", "transportJson", "lf"],
  1554. referencedClasses: []
  1555. }),
  1556. smalltalk.AmdExporter.klass);
  1557. smalltalk.addClass('ChunkParser', smalltalk.Object, ['stream'], 'Importer-Exporter');
  1558. smalltalk.ChunkParser.comment="I am responsible for parsing aStream contents in the chunk format.\x0a\x0a## API\x0a\x0a ChunkParser new\x0a stream: aStream;\x0a nextChunk";
  1559. smalltalk.addMethod(
  1560. smalltalk.method({
  1561. selector: "nextChunk",
  1562. category: 'reading',
  1563. fn: function (){
  1564. var self=this;
  1565. var char,result,chunk;
  1566. return smalltalk.withContext(function($ctx1) {
  1567. var $1,$2,$3;
  1568. var $early={};
  1569. try {
  1570. result=""._writeStream();
  1571. _st((function(){
  1572. return smalltalk.withContext(function($ctx2) {
  1573. char=_st(self["@stream"])._next();
  1574. char;
  1575. return _st(char)._notNil();
  1576. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
  1577. return smalltalk.withContext(function($ctx2) {
  1578. $1=_st(char).__eq("!");
  1579. if(smalltalk.assert($1)){
  1580. $2=_st(_st(self["@stream"])._peek()).__eq("!");
  1581. if(smalltalk.assert($2)){
  1582. _st(self["@stream"])._next();
  1583. } else {
  1584. $3=_st(_st(result)._contents())._trimBoth();
  1585. throw $early=[$3];
  1586. };
  1587. };
  1588. return _st(result)._nextPut_(char);
  1589. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1590. return nil;
  1591. }
  1592. catch(e) {if(e===$early)return e[0]; throw e}
  1593. }, function($ctx1) {$ctx1.fill(self,"nextChunk",{char:char,result:result,chunk:chunk},smalltalk.ChunkParser)})},
  1594. args: [],
  1595. source: "nextChunk\x0a\x09\x22The chunk format (Smalltalk Interchange Format or Fileout format)\x0a\x09is a trivial format but can be a bit tricky to understand:\x0a\x09\x09- Uses the exclamation mark as delimiter of chunks.\x0a\x09\x09- Inside a chunk a normal exclamation mark must be doubled.\x0a\x09\x09- A non empty chunk must be a valid Smalltalk expression.\x0a\x09\x09- A chunk on top level with a preceding empty chunk is an instruction chunk:\x0a\x09\x09\x09- The object created by the expression then takes over reading chunks.\x0a\x0a\x09This metod returns next chunk as a String (trimmed), empty String (all whitespace) or nil.\x22\x0a\x0a\x09| char result chunk |\x0a\x09result := '' writeStream.\x0a\x09\x09[char := stream next.\x0a\x09\x09char notNil] whileTrue: [\x0a\x09\x09\x09\x09char = '!' ifTrue: [\x0a\x09\x09\x09\x09\x09\x09stream peek = '!'\x0a\x09\x09\x09\x09\x09\x09\x09\x09ifTrue: [stream next \x22skipping the escape double\x22]\x0a\x09\x09\x09\x09\x09\x09\x09\x09ifFalse: [^result contents trimBoth \x22chunk end marker found\x22]].\x0a\x09\x09\x09\x09result nextPut: char].\x0a\x09^nil \x22a chunk needs to end with !\x22",
  1596. messageSends: ["writeStream", "whileTrue:", "ifTrue:", "ifTrue:ifFalse:", "next", "trimBoth", "contents", "=", "peek", "nextPut:", "notNil"],
  1597. referencedClasses: []
  1598. }),
  1599. smalltalk.ChunkParser);
  1600. smalltalk.addMethod(
  1601. smalltalk.method({
  1602. selector: "stream:",
  1603. category: 'accessing',
  1604. fn: function (aStream){
  1605. var self=this;
  1606. return smalltalk.withContext(function($ctx1) {
  1607. self["@stream"]=aStream;
  1608. return self}, function($ctx1) {$ctx1.fill(self,"stream:",{aStream:aStream},smalltalk.ChunkParser)})},
  1609. args: ["aStream"],
  1610. source: "stream: aStream\x0a\x09stream := aStream",
  1611. messageSends: [],
  1612. referencedClasses: []
  1613. }),
  1614. smalltalk.ChunkParser);
  1615. smalltalk.addMethod(
  1616. smalltalk.method({
  1617. selector: "on:",
  1618. category: 'not yet classified',
  1619. fn: function (aStream){
  1620. var self=this;
  1621. return smalltalk.withContext(function($ctx1) {
  1622. var $1;
  1623. $1=_st(self._new())._stream_(aStream);
  1624. return $1;
  1625. }, function($ctx1) {$ctx1.fill(self,"on:",{aStream:aStream},smalltalk.ChunkParser.klass)})},
  1626. args: ["aStream"],
  1627. source: "on: aStream\x0a\x09^self new stream: aStream",
  1628. messageSends: ["stream:", "new"],
  1629. referencedClasses: []
  1630. }),
  1631. smalltalk.ChunkParser.klass);
  1632. smalltalk.addClass('Importer', smalltalk.Object, [], 'Importer-Exporter');
  1633. smalltalk.Importer.comment="I can import Amber code from a string in the chunk format.\x0a\x0a## API\x0a\x0a Importer new import: aString";
  1634. smalltalk.addMethod(
  1635. smalltalk.method({
  1636. selector: "import:",
  1637. category: 'fileIn',
  1638. fn: function (aStream){
  1639. var self=this;
  1640. var chunk,result,parser,lastEmpty;
  1641. function $ChunkParser(){return smalltalk.ChunkParser||(typeof ChunkParser=="undefined"?nil:ChunkParser)}
  1642. function $Compiler(){return smalltalk.Compiler||(typeof Compiler=="undefined"?nil:Compiler)}
  1643. return smalltalk.withContext(function($ctx1) {
  1644. var $1,$2;
  1645. parser=_st($ChunkParser())._on_(aStream);
  1646. lastEmpty=false;
  1647. _st((function(){
  1648. return smalltalk.withContext(function($ctx2) {
  1649. chunk=_st(parser)._nextChunk();
  1650. chunk;
  1651. return _st(chunk)._isNil();
  1652. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
  1653. return smalltalk.withContext(function($ctx2) {
  1654. $1=_st(chunk)._isEmpty();
  1655. if(smalltalk.assert($1)){
  1656. lastEmpty=true;
  1657. return lastEmpty;
  1658. } else {
  1659. result=_st(_st($Compiler())._new())._evaluateExpression_(chunk);
  1660. result;
  1661. $2=lastEmpty;
  1662. if(smalltalk.assert($2)){
  1663. lastEmpty=false;
  1664. lastEmpty;
  1665. return _st(result)._scanFrom_(parser);
  1666. };
  1667. };
  1668. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  1669. return self}, function($ctx1) {$ctx1.fill(self,"import:",{aStream:aStream,chunk:chunk,result:result,parser:parser,lastEmpty:lastEmpty},smalltalk.Importer)})},
  1670. args: ["aStream"],
  1671. source: "import: aStream\x0a\x09| chunk result parser lastEmpty |\x0a\x09parser := ChunkParser on: aStream.\x0a\x09lastEmpty := false.\x0a\x09[chunk := parser nextChunk.\x0a\x09chunk isNil] whileFalse: [\x0a\x09\x09chunk isEmpty\x0a\x09\x09\x09ifTrue: [lastEmpty := true]\x0a\x09\x09\x09ifFalse: [\x0a\x09\x09\x09\x09result := Compiler new evaluateExpression: chunk.\x0a\x09\x09\x09\x09lastEmpty\x0a\x09\x09\x09\x09\x09\x09ifTrue: [\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09lastEmpty := false.\x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09result scanFrom: parser]]]",
  1672. messageSends: ["on:", "whileFalse:", "ifTrue:ifFalse:", "evaluateExpression:", "new", "ifTrue:", "scanFrom:", "isEmpty", "nextChunk", "isNil"],
  1673. referencedClasses: ["ChunkParser", "Compiler"]
  1674. }),
  1675. smalltalk.Importer);
  1676. smalltalk.addClass('MethodCategory', smalltalk.Object, ['methods', 'name', 'theClass'], 'Importer-Exporter');
  1677. smalltalk.MethodCategory.comment="I am an abstraction for a method category in a class / metaclass.\x0a\x0aI know of my class, name and methods.\x0aI am used when exporting a package.";
  1678. smalltalk.addMethod(
  1679. smalltalk.method({
  1680. selector: "methods",
  1681. category: 'accessing',
  1682. fn: function (){
  1683. var self=this;
  1684. return smalltalk.withContext(function($ctx1) {
  1685. var $1;
  1686. $1=self["@methods"];
  1687. return $1;
  1688. }, function($ctx1) {$ctx1.fill(self,"methods",{},smalltalk.MethodCategory)})},
  1689. args: [],
  1690. source: "methods\x0a\x09^methods",
  1691. messageSends: [],
  1692. referencedClasses: []
  1693. }),
  1694. smalltalk.MethodCategory);
  1695. smalltalk.addMethod(
  1696. smalltalk.method({
  1697. selector: "methods:",
  1698. category: 'accessing',
  1699. fn: function (aCollection){
  1700. var self=this;
  1701. return smalltalk.withContext(function($ctx1) {
  1702. self["@methods"]=aCollection;
  1703. return self}, function($ctx1) {$ctx1.fill(self,"methods:",{aCollection:aCollection},smalltalk.MethodCategory)})},
  1704. args: ["aCollection"],
  1705. source: "methods: aCollection\x0a\x09methods := aCollection",
  1706. messageSends: [],
  1707. referencedClasses: []
  1708. }),
  1709. smalltalk.MethodCategory);
  1710. smalltalk.addMethod(
  1711. smalltalk.method({
  1712. selector: "name",
  1713. category: 'accessing',
  1714. fn: function (){
  1715. var self=this;
  1716. return smalltalk.withContext(function($ctx1) {
  1717. var $1;
  1718. $1=self["@name"];
  1719. return $1;
  1720. }, function($ctx1) {$ctx1.fill(self,"name",{},smalltalk.MethodCategory)})},
  1721. args: [],
  1722. source: "name\x0a\x09^name",
  1723. messageSends: [],
  1724. referencedClasses: []
  1725. }),
  1726. smalltalk.MethodCategory);
  1727. smalltalk.addMethod(
  1728. smalltalk.method({
  1729. selector: "name:",
  1730. category: 'accessing',
  1731. fn: function (aString){
  1732. var self=this;
  1733. return smalltalk.withContext(function($ctx1) {
  1734. self["@name"]=aString;
  1735. return self}, function($ctx1) {$ctx1.fill(self,"name:",{aString:aString},smalltalk.MethodCategory)})},
  1736. args: ["aString"],
  1737. source: "name: aString\x0a\x09name := aString",
  1738. messageSends: [],
  1739. referencedClasses: []
  1740. }),
  1741. smalltalk.MethodCategory);
  1742. smalltalk.addMethod(
  1743. smalltalk.method({
  1744. selector: "theClass",
  1745. category: 'accessing',
  1746. fn: function (){
  1747. var self=this;
  1748. return smalltalk.withContext(function($ctx1) {
  1749. var $1;
  1750. $1=self["@theClass"];
  1751. return $1;
  1752. }, function($ctx1) {$ctx1.fill(self,"theClass",{},smalltalk.MethodCategory)})},
  1753. args: [],
  1754. source: "theClass\x0a\x09^theClass",
  1755. messageSends: [],
  1756. referencedClasses: []
  1757. }),
  1758. smalltalk.MethodCategory);
  1759. smalltalk.addMethod(
  1760. smalltalk.method({
  1761. selector: "theClass:",
  1762. category: 'accessing',
  1763. fn: function (aClass){
  1764. var self=this;
  1765. return smalltalk.withContext(function($ctx1) {
  1766. self["@theClass"]=aClass;
  1767. return self}, function($ctx1) {$ctx1.fill(self,"theClass:",{aClass:aClass},smalltalk.MethodCategory)})},
  1768. args: ["aClass"],
  1769. source: "theClass: aClass\x0a\x09theClass := aClass",
  1770. messageSends: [],
  1771. referencedClasses: []
  1772. }),
  1773. smalltalk.MethodCategory);
  1774. smalltalk.addMethod(
  1775. smalltalk.method({
  1776. selector: "name:theClass:methods:",
  1777. category: 'not yet classified',
  1778. fn: function (aString,aClass,anArray){
  1779. var self=this;
  1780. return smalltalk.withContext(function($ctx1) {
  1781. var $2,$3,$1;
  1782. $2=self._new();
  1783. _st($2)._name_(aString);
  1784. _st($2)._theClass_(aClass);
  1785. _st($2)._methods_(anArray);
  1786. $3=_st($2)._yourself();
  1787. $1=$3;
  1788. return $1;
  1789. }, function($ctx1) {$ctx1.fill(self,"name:theClass:methods:",{aString:aString,aClass:aClass,anArray:anArray},smalltalk.MethodCategory.klass)})},
  1790. args: ["aString", "aClass", "anArray"],
  1791. source: "name: aString theClass: aClass methods: anArray\x0a\x09^self new\x0a\x09\x09name: aString;\x0a\x09\x09theClass: aClass;\x0a\x09\x09methods: anArray;\x0a\x09\x09yourself",
  1792. messageSends: ["name:", "new", "theClass:", "methods:", "yourself"],
  1793. referencedClasses: []
  1794. }),
  1795. smalltalk.MethodCategory.klass);
  1796. smalltalk.addClass('PackageHandler', smalltalk.InterfacingObject, [], 'Importer-Exporter');
  1797. smalltalk.PackageHandler.comment="I am responsible for handling package loading and committing.\x0a\x0aI should not be used directly. Instead, use the corresponding `Package` methods.";
  1798. smalltalk.addMethod(
  1799. smalltalk.method({
  1800. selector: "ajaxPutAt:data:",
  1801. category: 'private',
  1802. fn: function (aURL,aString){
  1803. var self=this;
  1804. return smalltalk.withContext(function($ctx1) {
  1805. self._ajax_(smalltalk.HashedCollection._from_(["url".__minus_gt(aURL),"type".__minus_gt("PUT"),"data".__minus_gt(aString),"contentType".__minus_gt("text/plain;charset=UTF-8"),"error".__minus_gt((function(xhr){
  1806. return smalltalk.withContext(function($ctx2) {
  1807. return self._error_(_st(_st(_st("Commiting ".__comma(aURL)).__comma(" failed with reason: \x22")).__comma(_st(xhr)._responseText())).__comma("\x22"));
  1808. }, function($ctx2) {$ctx2.fillBlock({xhr:xhr},$ctx1)})}))]));
  1809. return self}, function($ctx1) {$ctx1.fill(self,"ajaxPutAt:data:",{aURL:aURL,aString:aString},smalltalk.PackageHandler)})},
  1810. args: ["aURL", "aString"],
  1811. source: "ajaxPutAt: aURL data: aString\x0a\x09self\x0a\x09\x09ajax: #{\x0a\x09\x09\x09'url' -> aURL.\x0a\x09\x09\x09'type' -> 'PUT'.\x0a\x09\x09\x09'data' -> aString.\x0a\x09\x09\x09'contentType' -> 'text/plain;charset=UTF-8'.\x0a\x09\x09\x09'error' -> [ :xhr | self error: 'Commiting ' , aURL , ' failed with reason: \x22' , (xhr responseText) , '\x22'] }",
  1812. messageSends: ["ajax:", "->", "error:", ",", "responseText"],
  1813. referencedClasses: []
  1814. }),
  1815. smalltalk.PackageHandler);
  1816. smalltalk.addMethod(
  1817. smalltalk.method({
  1818. selector: "commit:",
  1819. category: 'committing',
  1820. fn: function (aPackage){
  1821. var self=this;
  1822. function $PluggableExporter(){return smalltalk.PluggableExporter||(typeof PluggableExporter=="undefined"?nil:PluggableExporter)}
  1823. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  1824. return smalltalk.withContext(function($ctx1) {
  1825. _st(self._commitChannels())._do_displayingProgress_((function(commitStrategyFactory){
  1826. var fileContents,commitStrategy;
  1827. return smalltalk.withContext(function($ctx2) {
  1828. commitStrategy=_st(commitStrategyFactory)._value_(aPackage);
  1829. commitStrategy;
  1830. fileContents=_st($String())._streamContents_((function(stream){
  1831. return smalltalk.withContext(function($ctx3) {
  1832. return _st(_st($PluggableExporter())._forRecipe_(_st(commitStrategy)._key()))._exportPackage_on_(aPackage,stream);
  1833. }, function($ctx3) {$ctx3.fillBlock({stream:stream},$ctx2)})}));
  1834. fileContents;
  1835. return self._ajaxPutAt_data_(_st(commitStrategy)._value(),fileContents);
  1836. }, function($ctx2) {$ctx2.fillBlock({commitStrategyFactory:commitStrategyFactory,fileContents:fileContents,commitStrategy:commitStrategy},$ctx1)})}),"Committing package ".__comma(_st(aPackage)._name()));
  1837. return self}, function($ctx1) {$ctx1.fill(self,"commit:",{aPackage:aPackage},smalltalk.PackageHandler)})},
  1838. args: ["aPackage"],
  1839. source: "commit: aPackage\x0a\x09self commitChannels\x0a\x09\x09do: [ :commitStrategyFactory || fileContents commitStrategy |\x0a\x09\x09\x09commitStrategy := commitStrategyFactory value: aPackage.\x0a\x09\x09\x09fileContents := String streamContents: [ :stream |\x0a\x09\x09\x09\x09(PluggableExporter forRecipe: commitStrategy key) exportPackage: aPackage on: stream ].\x0a\x09\x09\x09self ajaxPutAt: commitStrategy value data: fileContents ]\x0a\x09\x09displayingProgress: 'Committing package ', aPackage name",
  1840. messageSends: ["do:displayingProgress:", "value:", "streamContents:", "exportPackage:on:", "forRecipe:", "key", "ajaxPutAt:data:", "value", ",", "name", "commitChannels"],
  1841. referencedClasses: ["PluggableExporter", "String"]
  1842. }),
  1843. smalltalk.PackageHandler);
  1844. smalltalk.addMethod(
  1845. smalltalk.method({
  1846. selector: "commitChannels",
  1847. category: 'committing',
  1848. fn: function (){
  1849. var self=this;
  1850. return smalltalk.withContext(function($ctx1) {
  1851. self._subclassResponsibility();
  1852. return self}, function($ctx1) {$ctx1.fill(self,"commitChannels",{},smalltalk.PackageHandler)})},
  1853. args: [],
  1854. source: "commitChannels\x0a\x09self subclassResponsibility",
  1855. messageSends: ["subclassResponsibility"],
  1856. referencedClasses: []
  1857. }),
  1858. smalltalk.PackageHandler);
  1859. smalltalk.PackageHandler.klass.iVarNames = ['registry'];
  1860. smalltalk.addMethod(
  1861. smalltalk.method({
  1862. selector: "classRegisteredFor:",
  1863. category: 'accessing',
  1864. fn: function (aString){
  1865. var self=this;
  1866. return smalltalk.withContext(function($ctx1) {
  1867. var $1;
  1868. $1=_st(self["@registry"])._at_(aString);
  1869. return $1;
  1870. }, function($ctx1) {$ctx1.fill(self,"classRegisteredFor:",{aString:aString},smalltalk.PackageHandler.klass)})},
  1871. args: ["aString"],
  1872. source: "classRegisteredFor: aString\x0a\x09^registry at: aString",
  1873. messageSends: ["at:"],
  1874. referencedClasses: []
  1875. }),
  1876. smalltalk.PackageHandler.klass);
  1877. smalltalk.addMethod(
  1878. smalltalk.method({
  1879. selector: "for:",
  1880. category: 'accessing',
  1881. fn: function (aString){
  1882. var self=this;
  1883. return smalltalk.withContext(function($ctx1) {
  1884. var $1;
  1885. $1=_st(self._classRegisteredFor_(aString))._new();
  1886. return $1;
  1887. }, function($ctx1) {$ctx1.fill(self,"for:",{aString:aString},smalltalk.PackageHandler.klass)})},
  1888. args: ["aString"],
  1889. source: "for: aString\x0a\x09^(self classRegisteredFor: aString) new",
  1890. messageSends: ["new", "classRegisteredFor:"],
  1891. referencedClasses: []
  1892. }),
  1893. smalltalk.PackageHandler.klass);
  1894. smalltalk.addMethod(
  1895. smalltalk.method({
  1896. selector: "initialize",
  1897. category: 'initialization',
  1898. fn: function (){
  1899. var self=this;
  1900. return smalltalk.withContext(function($ctx1) {
  1901. smalltalk.PackageHandler.klass.superclass.fn.prototype._initialize.apply(_st(self), []);
  1902. self["@registry"]=smalltalk.HashedCollection._from_([]);
  1903. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.PackageHandler.klass)})},
  1904. args: [],
  1905. source: "initialize\x0a\x09super initialize.\x0a\x09registry := #{}",
  1906. messageSends: ["initialize"],
  1907. referencedClasses: []
  1908. }),
  1909. smalltalk.PackageHandler.klass);
  1910. smalltalk.addMethod(
  1911. smalltalk.method({
  1912. selector: "register:for:",
  1913. category: 'registry',
  1914. fn: function (aClass,aString){
  1915. var self=this;
  1916. return smalltalk.withContext(function($ctx1) {
  1917. _st(self["@registry"])._at_put_(aString,aClass);
  1918. return self}, function($ctx1) {$ctx1.fill(self,"register:for:",{aClass:aClass,aString:aString},smalltalk.PackageHandler.klass)})},
  1919. args: ["aClass", "aString"],
  1920. source: "register: aClass for: aString\x0a\x09registry at: aString put: aClass",
  1921. messageSends: ["at:put:"],
  1922. referencedClasses: []
  1923. }),
  1924. smalltalk.PackageHandler.klass);
  1925. smalltalk.addMethod(
  1926. smalltalk.method({
  1927. selector: "registerFor:",
  1928. category: 'registry',
  1929. fn: function (aString){
  1930. var self=this;
  1931. function $PackageHandler(){return smalltalk.PackageHandler||(typeof PackageHandler=="undefined"?nil:PackageHandler)}
  1932. return smalltalk.withContext(function($ctx1) {
  1933. _st($PackageHandler())._register_for_(self,aString);
  1934. return self}, function($ctx1) {$ctx1.fill(self,"registerFor:",{aString:aString},smalltalk.PackageHandler.klass)})},
  1935. args: ["aString"],
  1936. source: "registerFor: aString\x0a\x09PackageHandler register: self for: aString",
  1937. messageSends: ["register:for:"],
  1938. referencedClasses: ["PackageHandler"]
  1939. }),
  1940. smalltalk.PackageHandler.klass);
  1941. smalltalk.addClass('AmdPackageHandler', smalltalk.PackageHandler, [], 'Importer-Exporter');
  1942. smalltalk.AmdPackageHandler.comment="I am responsible for handling package loading and committing.\x0d\x0a\x0d\x0aI should not be used directly. Instead, use the corresponding `Package` methods.";
  1943. smalltalk.addMethod(
  1944. smalltalk.method({
  1945. selector: "commitChannels",
  1946. category: 'committing',
  1947. fn: function (){
  1948. var self=this;
  1949. function $Exporter(){return smalltalk.Exporter||(typeof Exporter=="undefined"?nil:Exporter)}
  1950. function $StrippedExporter(){return smalltalk.StrippedExporter||(typeof StrippedExporter=="undefined"?nil:StrippedExporter)}
  1951. function $ChunkExporter(){return smalltalk.ChunkExporter||(typeof ChunkExporter=="undefined"?nil:ChunkExporter)}
  1952. return smalltalk.withContext(function($ctx1) {
  1953. var $1;
  1954. $1=[(function(pkg){
  1955. return smalltalk.withContext(function($ctx2) {
  1956. return _st(_st(_st($Exporter())._default())._amdRecipe()).__minus_gt(_st(_st(_st(_st(pkg)._commitPathJs()).__comma("/")).__comma(_st(pkg)._name())).__comma(".js"));
  1957. }, function($ctx2) {$ctx2.fillBlock({pkg:pkg},$ctx1)})}),(function(pkg){
  1958. return smalltalk.withContext(function($ctx2) {
  1959. return _st(_st(_st($StrippedExporter())._default())._amdRecipe()).__minus_gt(_st(_st(_st(_st(pkg)._commitPathJs()).__comma("/")).__comma(_st(pkg)._name())).__comma(".deploy.js"));
  1960. }, function($ctx2) {$ctx2.fillBlock({pkg:pkg},$ctx1)})}),(function(pkg){
  1961. return smalltalk.withContext(function($ctx2) {
  1962. return _st(_st(_st($ChunkExporter())._default())._recipe()).__minus_gt(_st(_st(_st(_st(pkg)._commitPathSt()).__comma("/")).__comma(_st(pkg)._name())).__comma(".st"));
  1963. }, function($ctx2) {$ctx2.fillBlock({pkg:pkg},$ctx1)})})];
  1964. return $1;
  1965. }, function($ctx1) {$ctx1.fill(self,"commitChannels",{},smalltalk.AmdPackageHandler)})},
  1966. args: [],
  1967. source: "commitChannels\x0a\x09^{ \x0a\x09\x09[ :pkg | Exporter default amdRecipe -> (pkg commitPathJs, '/', pkg name, '.js') ].\x0a\x09\x09[ :pkg | StrippedExporter default amdRecipe -> (pkg commitPathJs, '/', pkg name, '.deploy.js') ].\x0a\x09\x09[ :pkg | ChunkExporter default recipe -> (pkg commitPathSt, '/', pkg name, '.st') ]\x0a\x09}",
  1968. messageSends: ["->", ",", "name", "commitPathJs", "amdRecipe", "default", "commitPathSt", "recipe"],
  1969. referencedClasses: ["Exporter", "StrippedExporter", "ChunkExporter"]
  1970. }),
  1971. smalltalk.AmdPackageHandler);
  1972. smalltalk.addMethod(
  1973. smalltalk.method({
  1974. selector: "commitPathJsFor:",
  1975. category: 'committing',
  1976. fn: function (aPackage){
  1977. var self=this;
  1978. return smalltalk.withContext(function($ctx1) {
  1979. var $1;
  1980. $1=self._toUrl_(self._namespaceFor_(aPackage));
  1981. return $1;
  1982. }, function($ctx1) {$ctx1.fill(self,"commitPathJsFor:",{aPackage:aPackage},smalltalk.AmdPackageHandler)})},
  1983. args: ["aPackage"],
  1984. source: "commitPathJsFor: aPackage\x0a\x09^self toUrl: (self namespaceFor: aPackage)",
  1985. messageSends: ["toUrl:", "namespaceFor:"],
  1986. referencedClasses: []
  1987. }),
  1988. smalltalk.AmdPackageHandler);
  1989. smalltalk.addMethod(
  1990. smalltalk.method({
  1991. selector: "commitPathStFor:",
  1992. category: 'committing',
  1993. fn: function (aPackage){
  1994. var self=this;
  1995. return smalltalk.withContext(function($ctx1) {
  1996. var $1;
  1997. $1=self._toUrl_(_st(self._namespaceFor_(aPackage)).__comma("/_source"));
  1998. return $1;
  1999. }, function($ctx1) {$ctx1.fill(self,"commitPathStFor:",{aPackage:aPackage},smalltalk.AmdPackageHandler)})},
  2000. args: ["aPackage"],
  2001. source: "commitPathStFor: aPackage\x0a\x09\x22if _source is not mapped, .st commit will likely fail\x22\x0a\x09^self toUrl: (self namespaceFor: aPackage), '/_source'.",
  2002. messageSends: ["toUrl:", ",", "namespaceFor:"],
  2003. referencedClasses: []
  2004. }),
  2005. smalltalk.AmdPackageHandler);
  2006. smalltalk.addMethod(
  2007. smalltalk.method({
  2008. selector: "namespaceFor:",
  2009. category: 'committing',
  2010. fn: function (aPackage){
  2011. var self=this;
  2012. return smalltalk.withContext(function($ctx1) {
  2013. var $2,$3,$4,$1;
  2014. $2=_st(aPackage)._amdNamespace();
  2015. if(($receiver = $2) == nil || $receiver == undefined){
  2016. $3=aPackage;
  2017. _st($3)._amdNamespace_(_st(self._class())._defaultNamespace());
  2018. $4=_st($3)._amdNamespace();
  2019. $1=$4;
  2020. } else {
  2021. $1=$2;
  2022. };
  2023. return $1;
  2024. }, function($ctx1) {$ctx1.fill(self,"namespaceFor:",{aPackage:aPackage},smalltalk.AmdPackageHandler)})},
  2025. args: ["aPackage"],
  2026. source: "namespaceFor: aPackage\x0a\x09^aPackage amdNamespace\x0a\x09\x09ifNil: [ aPackage amdNamespace: self class defaultNamespace; amdNamespace ]",
  2027. messageSends: ["ifNil:", "amdNamespace:", "defaultNamespace", "class", "amdNamespace"],
  2028. referencedClasses: []
  2029. }),
  2030. smalltalk.AmdPackageHandler);
  2031. smalltalk.addMethod(
  2032. smalltalk.method({
  2033. selector: "toUrl:",
  2034. category: 'private',
  2035. fn: function (aString){
  2036. var self=this;
  2037. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  2038. return smalltalk.withContext(function($ctx1) {
  2039. var $1,$2;
  2040. $1=_st(_st($Smalltalk())._current())._at_("_amd_require");
  2041. if(($receiver = $1) == nil || $receiver == undefined){
  2042. self._error_("AMD loader not present");
  2043. } else {
  2044. var require;
  2045. require=$receiver;
  2046. $2=_st(_st(require)._basicAt_("toUrl"))._value_(aString);
  2047. return $2;
  2048. };
  2049. return self}, function($ctx1) {$ctx1.fill(self,"toUrl:",{aString:aString},smalltalk.AmdPackageHandler)})},
  2050. args: ["aString"],
  2051. source: "toUrl: aString\x0a\x09(Smalltalk current at: '_amd_require')\x0a\x09\x09ifNil: [ self error: 'AMD loader not present' ]\x0a\x09\x09ifNotNil: [ :require | ^(require basicAt: 'toUrl') value: aString ]",
  2052. messageSends: ["ifNil:ifNotNil:", "error:", "value:", "basicAt:", "at:", "current"],
  2053. referencedClasses: ["Smalltalk"]
  2054. }),
  2055. smalltalk.AmdPackageHandler);
  2056. smalltalk.AmdPackageHandler.klass.iVarNames = ['defaultNamespace'];
  2057. smalltalk.addMethod(
  2058. smalltalk.method({
  2059. selector: "commitPathsFromLoader",
  2060. category: 'commit paths',
  2061. fn: function (){
  2062. var self=this;
  2063. return smalltalk.withContext(function($ctx1) {
  2064. return self}, function($ctx1) {$ctx1.fill(self,"commitPathsFromLoader",{},smalltalk.AmdPackageHandler.klass)})},
  2065. args: [],
  2066. source: "commitPathsFromLoader\x0a\x09\x22TODO\x22",
  2067. messageSends: [],
  2068. referencedClasses: []
  2069. }),
  2070. smalltalk.AmdPackageHandler.klass);
  2071. smalltalk.addMethod(
  2072. smalltalk.method({
  2073. selector: "defaultNamespace",
  2074. category: 'commit paths',
  2075. fn: function (){
  2076. var self=this;
  2077. return smalltalk.withContext(function($ctx1) {
  2078. var $2,$1;
  2079. $2=self["@defaultNamespace"];
  2080. if(($receiver = $2) == nil || $receiver == undefined){
  2081. $1=self._error_("AMD default namespace not set.");
  2082. } else {
  2083. $1=$2;
  2084. };
  2085. return $1;
  2086. }, function($ctx1) {$ctx1.fill(self,"defaultNamespace",{},smalltalk.AmdPackageHandler.klass)})},
  2087. args: [],
  2088. source: "defaultNamespace\x0a\x09^ defaultNamespace ifNil: [ self error: 'AMD default namespace not set.' ]",
  2089. messageSends: ["ifNil:", "error:"],
  2090. referencedClasses: []
  2091. }),
  2092. smalltalk.AmdPackageHandler.klass);
  2093. smalltalk.addMethod(
  2094. smalltalk.method({
  2095. selector: "defaultNamespace:",
  2096. category: 'commit paths',
  2097. fn: function (aString){
  2098. var self=this;
  2099. return smalltalk.withContext(function($ctx1) {
  2100. self["@defaultNamespace"]=aString;
  2101. return self}, function($ctx1) {$ctx1.fill(self,"defaultNamespace:",{aString:aString},smalltalk.AmdPackageHandler.klass)})},
  2102. args: ["aString"],
  2103. source: "defaultNamespace: aString\x0a\x09defaultNamespace := aString",
  2104. messageSends: [],
  2105. referencedClasses: []
  2106. }),
  2107. smalltalk.AmdPackageHandler.klass);
  2108. smalltalk.addMethod(
  2109. smalltalk.method({
  2110. selector: "initialize",
  2111. category: 'initialization',
  2112. fn: function (){
  2113. var self=this;
  2114. return smalltalk.withContext(function($ctx1) {
  2115. smalltalk.AmdPackageHandler.klass.superclass.fn.prototype._initialize.apply(_st(self), []);
  2116. self._registerFor_("amd");
  2117. self._commitPathsFromLoader();
  2118. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.AmdPackageHandler.klass)})},
  2119. args: [],
  2120. source: "initialize\x0a\x09super initialize.\x0a\x09self registerFor: 'amd'.\x0a\x09self commitPathsFromLoader",
  2121. messageSends: ["initialize", "registerFor:", "commitPathsFromLoader"],
  2122. referencedClasses: []
  2123. }),
  2124. smalltalk.AmdPackageHandler.klass);
  2125. smalltalk.addMethod(
  2126. smalltalk.method({
  2127. selector: "resetCommitPaths",
  2128. category: 'commit paths',
  2129. fn: function (){
  2130. var self=this;
  2131. return smalltalk.withContext(function($ctx1) {
  2132. self["@defaultNamespace"]=nil;
  2133. return self}, function($ctx1) {$ctx1.fill(self,"resetCommitPaths",{},smalltalk.AmdPackageHandler.klass)})},
  2134. args: [],
  2135. source: "resetCommitPaths\x0a\x09defaultNamespace := nil",
  2136. messageSends: [],
  2137. referencedClasses: []
  2138. }),
  2139. smalltalk.AmdPackageHandler.klass);
  2140. smalltalk.addClass('LegacyPackageHandler', smalltalk.PackageHandler, [], 'Importer-Exporter');
  2141. smalltalk.LegacyPackageHandler.comment="I am responsible for handling package loading and committing.\x0d\x0a\x0d\x0aI should not be used directly. Instead, use the corresponding `Package` methods.";
  2142. smalltalk.addMethod(
  2143. smalltalk.method({
  2144. selector: "commitChannels",
  2145. category: 'committing',
  2146. fn: function (){
  2147. var self=this;
  2148. function $Exporter(){return smalltalk.Exporter||(typeof Exporter=="undefined"?nil:Exporter)}
  2149. function $StrippedExporter(){return smalltalk.StrippedExporter||(typeof StrippedExporter=="undefined"?nil:StrippedExporter)}
  2150. function $ChunkExporter(){return smalltalk.ChunkExporter||(typeof ChunkExporter=="undefined"?nil:ChunkExporter)}
  2151. return smalltalk.withContext(function($ctx1) {
  2152. var $1;
  2153. $1=[(function(pkg){
  2154. return smalltalk.withContext(function($ctx2) {
  2155. return _st(_st(_st($Exporter())._default())._recipe()).__minus_gt(_st(_st(_st(_st(pkg)._commitPathJs()).__comma("/")).__comma(_st(pkg)._name())).__comma(".js"));
  2156. }, function($ctx2) {$ctx2.fillBlock({pkg:pkg},$ctx1)})}),(function(pkg){
  2157. return smalltalk.withContext(function($ctx2) {
  2158. return _st(_st(_st($StrippedExporter())._default())._recipe()).__minus_gt(_st(_st(_st(_st(pkg)._commitPathJs()).__comma("/")).__comma(_st(pkg)._name())).__comma(".deploy.js"));
  2159. }, function($ctx2) {$ctx2.fillBlock({pkg:pkg},$ctx1)})}),(function(pkg){
  2160. return smalltalk.withContext(function($ctx2) {
  2161. return _st(_st(_st($ChunkExporter())._default())._recipe()).__minus_gt(_st(_st(_st(_st(pkg)._commitPathSt()).__comma("/")).__comma(_st(pkg)._name())).__comma(".st"));
  2162. }, function($ctx2) {$ctx2.fillBlock({pkg:pkg},$ctx1)})})];
  2163. return $1;
  2164. }, function($ctx1) {$ctx1.fill(self,"commitChannels",{},smalltalk.LegacyPackageHandler)})},
  2165. args: [],
  2166. source: "commitChannels\x0a\x09^{ \x0a\x09\x09[ :pkg | Exporter default recipe -> (pkg commitPathJs, '/', pkg name, '.js') ].\x0a\x09\x09[ :pkg | StrippedExporter default recipe -> (pkg commitPathJs, '/', pkg name, '.deploy.js') ].\x0a\x09\x09[ :pkg | ChunkExporter default recipe -> (pkg commitPathSt, '/', pkg name, '.st') ]\x0a\x09}",
  2167. messageSends: ["->", ",", "name", "commitPathJs", "recipe", "default", "commitPathSt"],
  2168. referencedClasses: ["Exporter", "StrippedExporter", "ChunkExporter"]
  2169. }),
  2170. smalltalk.LegacyPackageHandler);
  2171. smalltalk.addMethod(
  2172. smalltalk.method({
  2173. selector: "commitPathJsFor:",
  2174. category: 'committing',
  2175. fn: function (aPackage){
  2176. var self=this;
  2177. return smalltalk.withContext(function($ctx1) {
  2178. var $1;
  2179. $1=_st(self._class())._defaultCommitPathJs();
  2180. return $1;
  2181. }, function($ctx1) {$ctx1.fill(self,"commitPathJsFor:",{aPackage:aPackage},smalltalk.LegacyPackageHandler)})},
  2182. args: ["aPackage"],
  2183. source: "commitPathJsFor: aPackage\x0a\x09^self class defaultCommitPathJs",
  2184. messageSends: ["defaultCommitPathJs", "class"],
  2185. referencedClasses: []
  2186. }),
  2187. smalltalk.LegacyPackageHandler);
  2188. smalltalk.addMethod(
  2189. smalltalk.method({
  2190. selector: "commitPathStFor:",
  2191. category: 'committing',
  2192. fn: function (aPackage){
  2193. var self=this;
  2194. return smalltalk.withContext(function($ctx1) {
  2195. var $1;
  2196. $1=_st(self._class())._defaultCommitPathSt();
  2197. return $1;
  2198. }, function($ctx1) {$ctx1.fill(self,"commitPathStFor:",{aPackage:aPackage},smalltalk.LegacyPackageHandler)})},
  2199. args: ["aPackage"],
  2200. source: "commitPathStFor: aPackage\x0a\x09^self class defaultCommitPathSt",
  2201. messageSends: ["defaultCommitPathSt", "class"],
  2202. referencedClasses: []
  2203. }),
  2204. smalltalk.LegacyPackageHandler);
  2205. smalltalk.addMethod(
  2206. smalltalk.method({
  2207. selector: "loadPackage:prefix:",
  2208. category: 'loading',
  2209. fn: function (packageName,aString){
  2210. var self=this;
  2211. var url;
  2212. return smalltalk.withContext(function($ctx1) {
  2213. var $1;
  2214. url=_st(_st(_st("/".__comma(aString)).__comma("/js/")).__comma(packageName)).__comma(".js");
  2215. self._ajax_(smalltalk.HashedCollection._from_(["url".__minus_gt(url),"type".__minus_gt("GET"),"dataType".__minus_gt("script"),"complete".__minus_gt((function(jqXHR,textStatus){
  2216. return smalltalk.withContext(function($ctx2) {
  2217. $1=_st(_st(jqXHR)._readyState()).__eq((4));
  2218. if(smalltalk.assert($1)){
  2219. return self._setupPackageNamed_prefix_(packageName,aString);
  2220. };
  2221. }, function($ctx2) {$ctx2.fillBlock({jqXHR:jqXHR,textStatus:textStatus},$ctx1)})})),"error".__minus_gt((function(){
  2222. return smalltalk.withContext(function($ctx2) {
  2223. return self._alert_("Could not load package at: ".__comma(url));
  2224. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))]));
  2225. return self}, function($ctx1) {$ctx1.fill(self,"loadPackage:prefix:",{packageName:packageName,aString:aString,url:url},smalltalk.LegacyPackageHandler)})},
  2226. args: ["packageName", "aString"],
  2227. source: "loadPackage: packageName prefix: aString\x0a\x09| url |\x0a\x09url := '/', aString, '/js/', packageName, '.js'.\x0a\x09self\x0a\x09\x09ajax: #{\x0a\x09\x09\x09'url' -> url.\x0a\x09\x09\x09'type' -> 'GET'.\x0a\x09\x09\x09'dataType' -> 'script'.\x0a\x09\x09\x09'complete' -> [ :jqXHR :textStatus |\x0a\x09\x09\x09\x09jqXHR readyState = 4\x0a\x09\x09\x09\x09\x09ifTrue: [ self setupPackageNamed: packageName prefix: aString ] ].\x0a\x09\x09\x09'error' -> [ self alert: 'Could not load package at: ', url ]\x0a\x09\x09}",
  2228. messageSends: [",", "ajax:", "->", "ifTrue:", "setupPackageNamed:prefix:", "=", "readyState", "alert:"],
  2229. referencedClasses: []
  2230. }),
  2231. smalltalk.LegacyPackageHandler);
  2232. smalltalk.addMethod(
  2233. smalltalk.method({
  2234. selector: "loadPackages:prefix:",
  2235. category: 'loading',
  2236. fn: function (aCollection,aString){
  2237. var self=this;
  2238. return smalltalk.withContext(function($ctx1) {
  2239. _st(aCollection)._do_((function(each){
  2240. return smalltalk.withContext(function($ctx2) {
  2241. return self._loadPackage_prefix_(each,aString);
  2242. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2243. return self}, function($ctx1) {$ctx1.fill(self,"loadPackages:prefix:",{aCollection:aCollection,aString:aString},smalltalk.LegacyPackageHandler)})},
  2244. args: ["aCollection", "aString"],
  2245. source: "loadPackages: aCollection prefix: aString\x0a\x09aCollection do: [ :each |\x0a\x09\x09self loadPackage: each prefix: aString ]",
  2246. messageSends: ["do:", "loadPackage:prefix:"],
  2247. referencedClasses: []
  2248. }),
  2249. smalltalk.LegacyPackageHandler);
  2250. smalltalk.addMethod(
  2251. smalltalk.method({
  2252. selector: "setupPackageNamed:prefix:",
  2253. category: 'private',
  2254. fn: function (packageName,aString){
  2255. var self=this;
  2256. function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
  2257. return smalltalk.withContext(function($ctx1) {
  2258. var $1,$2;
  2259. $1=_st($Package())._named_(packageName);
  2260. _st($1)._setupClasses();
  2261. _st($1)._commitPathJs_(_st("/".__comma(aString)).__comma("/js"));
  2262. $2=_st($1)._commitPathSt_(_st("/".__comma(aString)).__comma("/st"));
  2263. return self}, function($ctx1) {$ctx1.fill(self,"setupPackageNamed:prefix:",{packageName:packageName,aString:aString},smalltalk.LegacyPackageHandler)})},
  2264. args: ["packageName", "aString"],
  2265. source: "setupPackageNamed: packageName prefix: aString\x0a\x0a\x09(Package named: packageName)\x0a\x09\x09setupClasses;\x0a\x09\x09commitPathJs: '/', aString, '/js';\x0a\x09\x09commitPathSt: '/', aString, '/st'",
  2266. messageSends: ["setupClasses", "named:", "commitPathJs:", ",", "commitPathSt:"],
  2267. referencedClasses: ["Package"]
  2268. }),
  2269. smalltalk.LegacyPackageHandler);
  2270. smalltalk.LegacyPackageHandler.klass.iVarNames = ['defaultCommitPathJs','defaultCommitPathSt'];
  2271. smalltalk.addMethod(
  2272. smalltalk.method({
  2273. selector: "commitPathsFromLoader",
  2274. category: 'commit paths',
  2275. fn: function (){
  2276. var self=this;
  2277. return smalltalk.withContext(function($ctx1) {
  2278. var commitPath = typeof amber !== 'undefined' && amber.commitPath;
  2279. if (!commitPath) return;
  2280. if (commitPath.js) self._defaultCommitPathJs_(commitPath.js);
  2281. if (commitPath.st) self._defaultCommitPathSt_(commitPath.st);
  2282. ;
  2283. return self}, function($ctx1) {$ctx1.fill(self,"commitPathsFromLoader",{},smalltalk.LegacyPackageHandler.klass)})},
  2284. args: [],
  2285. source: "commitPathsFromLoader\x0a\x09<\x0a\x09\x09var commitPath = typeof amber !== 'undefined' && amber.commitPath;\x0a\x09\x09if (!commitPath) return;\x0a\x09\x09if (commitPath.js) self._defaultCommitPathJs_(commitPath.js);\x0a\x09\x09if (commitPath.st) self._defaultCommitPathSt_(commitPath.st);\x0a\x09>",
  2286. messageSends: [],
  2287. referencedClasses: []
  2288. }),
  2289. smalltalk.LegacyPackageHandler.klass);
  2290. smalltalk.addMethod(
  2291. smalltalk.method({
  2292. selector: "defaultCommitPathJs",
  2293. category: 'commit paths',
  2294. fn: function (){
  2295. var self=this;
  2296. return smalltalk.withContext(function($ctx1) {
  2297. var $2,$1;
  2298. $2=self["@defaultCommitPathJs"];
  2299. if(($receiver = $2) == nil || $receiver == undefined){
  2300. self["@defaultCommitPathJs"]="js";
  2301. $1=self["@defaultCommitPathJs"];
  2302. } else {
  2303. $1=$2;
  2304. };
  2305. return $1;
  2306. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs",{},smalltalk.LegacyPackageHandler.klass)})},
  2307. args: [],
  2308. source: "defaultCommitPathJs\x0a\x09^ defaultCommitPathJs ifNil: [ defaultCommitPathJs := 'js']",
  2309. messageSends: ["ifNil:"],
  2310. referencedClasses: []
  2311. }),
  2312. smalltalk.LegacyPackageHandler.klass);
  2313. smalltalk.addMethod(
  2314. smalltalk.method({
  2315. selector: "defaultCommitPathJs:",
  2316. category: 'commit paths',
  2317. fn: function (aString){
  2318. var self=this;
  2319. return smalltalk.withContext(function($ctx1) {
  2320. self["@defaultCommitPathJs"]=aString;
  2321. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathJs:",{aString:aString},smalltalk.LegacyPackageHandler.klass)})},
  2322. args: ["aString"],
  2323. source: "defaultCommitPathJs: aString\x0a\x09defaultCommitPathJs := aString",
  2324. messageSends: [],
  2325. referencedClasses: []
  2326. }),
  2327. smalltalk.LegacyPackageHandler.klass);
  2328. smalltalk.addMethod(
  2329. smalltalk.method({
  2330. selector: "defaultCommitPathSt",
  2331. category: 'commit paths',
  2332. fn: function (){
  2333. var self=this;
  2334. return smalltalk.withContext(function($ctx1) {
  2335. var $2,$1;
  2336. $2=self["@defaultCommitPathSt"];
  2337. if(($receiver = $2) == nil || $receiver == undefined){
  2338. self["@defaultCommitPathSt"]="st";
  2339. $1=self["@defaultCommitPathSt"];
  2340. } else {
  2341. $1=$2;
  2342. };
  2343. return $1;
  2344. }, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt",{},smalltalk.LegacyPackageHandler.klass)})},
  2345. args: [],
  2346. source: "defaultCommitPathSt\x0a\x09^ defaultCommitPathSt ifNil: [ defaultCommitPathSt := 'st']",
  2347. messageSends: ["ifNil:"],
  2348. referencedClasses: []
  2349. }),
  2350. smalltalk.LegacyPackageHandler.klass);
  2351. smalltalk.addMethod(
  2352. smalltalk.method({
  2353. selector: "defaultCommitPathSt:",
  2354. category: 'commit paths',
  2355. fn: function (aString){
  2356. var self=this;
  2357. return smalltalk.withContext(function($ctx1) {
  2358. self["@defaultCommitPathSt"]=aString;
  2359. return self}, function($ctx1) {$ctx1.fill(self,"defaultCommitPathSt:",{aString:aString},smalltalk.LegacyPackageHandler.klass)})},
  2360. args: ["aString"],
  2361. source: "defaultCommitPathSt: aString\x0a\x09defaultCommitPathSt := aString",
  2362. messageSends: [],
  2363. referencedClasses: []
  2364. }),
  2365. smalltalk.LegacyPackageHandler.klass);
  2366. smalltalk.addMethod(
  2367. smalltalk.method({
  2368. selector: "initialize",
  2369. category: 'initialization',
  2370. fn: function (){
  2371. var self=this;
  2372. return smalltalk.withContext(function($ctx1) {
  2373. smalltalk.LegacyPackageHandler.klass.superclass.fn.prototype._initialize.apply(_st(self), []);
  2374. self._registerFor_("unknown");
  2375. self._commitPathsFromLoader();
  2376. return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.LegacyPackageHandler.klass)})},
  2377. args: [],
  2378. source: "initialize\x0a\x09super initialize.\x0a\x09self registerFor: 'unknown'.\x0a\x09self commitPathsFromLoader",
  2379. messageSends: ["initialize", "registerFor:", "commitPathsFromLoader"],
  2380. referencedClasses: []
  2381. }),
  2382. smalltalk.LegacyPackageHandler.klass);
  2383. smalltalk.addMethod(
  2384. smalltalk.method({
  2385. selector: "loadPackages:prefix:",
  2386. category: 'loading',
  2387. fn: function (aCollection,aString){
  2388. var self=this;
  2389. return smalltalk.withContext(function($ctx1) {
  2390. var $1;
  2391. $1=_st(self._new())._loadPackages_prefix_(aCollection,aString);
  2392. return $1;
  2393. }, function($ctx1) {$ctx1.fill(self,"loadPackages:prefix:",{aCollection:aCollection,aString:aString},smalltalk.LegacyPackageHandler.klass)})},
  2394. args: ["aCollection", "aString"],
  2395. source: "loadPackages: aCollection prefix: aString\x0a\x09^ self new loadPackages: aCollection prefix: aString",
  2396. messageSends: ["loadPackages:prefix:", "new"],
  2397. referencedClasses: []
  2398. }),
  2399. smalltalk.LegacyPackageHandler.klass);
  2400. smalltalk.addMethod(
  2401. smalltalk.method({
  2402. selector: "resetCommitPaths",
  2403. category: 'commit paths',
  2404. fn: function (){
  2405. var self=this;
  2406. return smalltalk.withContext(function($ctx1) {
  2407. self["@defaultCommitPathJs"]=nil;
  2408. self["@defaultCommitPathSt"]=nil;
  2409. return self}, function($ctx1) {$ctx1.fill(self,"resetCommitPaths",{},smalltalk.LegacyPackageHandler.klass)})},
  2410. args: [],
  2411. source: "resetCommitPaths\x0a\x09defaultCommitPathJs := nil.\x0a\x09defaultCommitPathSt := nil",
  2412. messageSends: [],
  2413. referencedClasses: []
  2414. }),
  2415. smalltalk.LegacyPackageHandler.klass);
  2416. smalltalk.addClass('PluggableExporter', smalltalk.Object, ['recipe'], 'Importer-Exporter');
  2417. smalltalk.PluggableExporter.comment="I am an engine for exporting structured data on a Stream.\x0a\x0aMy instances are created using\x0a PluggableExporter newUsing: recipe,\x0awhere recipe is structured description of the exporting algorithm.\x0a\x0aThe actual exporting is done by interpreting the recipe using a `RecipeInterpreter`.\x0a\x0a\x0aI am used to export amber packages, so I have a convenience method\x0a`exportPackage: aPackage on: aStream`\x0awhich exports `aPackage` using the `recipe`\x0a(it is otherwise no special, so it may be renamed to export:on:)";
  2418. smalltalk.addMethod(
  2419. smalltalk.method({
  2420. selector: "exportAllPackages",
  2421. category: 'fileOut',
  2422. fn: function (){
  2423. var self=this;
  2424. function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
  2425. function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
  2426. return smalltalk.withContext(function($ctx1) {
  2427. var $1;
  2428. $1=_st($String())._streamContents_((function(stream){
  2429. return smalltalk.withContext(function($ctx2) {
  2430. return _st(_st(_st($Smalltalk())._current())._packages())._do_((function(pkg){
  2431. return smalltalk.withContext(function($ctx3) {
  2432. return self._exportPackage_on_(pkg,stream);
  2433. }, function($ctx3) {$ctx3.fillBlock({pkg:pkg},$ctx2)})}));
  2434. }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1)})}));
  2435. return $1;
  2436. }, function($ctx1) {$ctx1.fill(self,"exportAllPackages",{},smalltalk.PluggableExporter)})},
  2437. args: [],
  2438. source: "exportAllPackages\x0a\x09\x22Export all packages in the system.\x22\x0a\x0a\x09^String streamContents: [:stream |\x0a\x09\x09Smalltalk current packages do: [:pkg |\x0a\x09\x09self exportPackage: pkg on: stream]]",
  2439. messageSends: ["streamContents:", "do:", "exportPackage:on:", "packages", "current"],
  2440. referencedClasses: ["Smalltalk", "String"]
  2441. }),
  2442. smalltalk.PluggableExporter);
  2443. smalltalk.addMethod(
  2444. smalltalk.method({
  2445. selector: "exportPackage:on:",
  2446. category: 'fileOut',
  2447. fn: function (aPackage,aStream){
  2448. var self=this;
  2449. return smalltalk.withContext(function($ctx1) {
  2450. _st(self._interpreter())._interpret_for_on_(self._recipe(),aPackage,aStream);
  2451. return self}, function($ctx1) {$ctx1.fill(self,"exportPackage:on:",{aPackage:aPackage,aStream:aStream},smalltalk.PluggableExporter)})},
  2452. args: ["aPackage", "aStream"],
  2453. source: "exportPackage: aPackage on: aStream\x0a\x09self interpreter interpret: self recipe for: aPackage on: aStream",
  2454. messageSends: ["interpret:for:on:", "recipe", "interpreter"],
  2455. referencedClasses: []
  2456. }),
  2457. smalltalk.PluggableExporter);
  2458. smalltalk.addMethod(
  2459. smalltalk.method({
  2460. selector: "interpreter",
  2461. category: 'accessing',
  2462. fn: function (){
  2463. var self=this;
  2464. function $RecipeInterpreter(){return smalltalk.RecipeInterpreter||(typeof RecipeInterpreter=="undefined"?nil:RecipeInterpreter)}
  2465. return smalltalk.withContext(function($ctx1) {
  2466. var $1;
  2467. $1=_st($RecipeInterpreter())._new();
  2468. return $1;
  2469. }, function($ctx1) {$ctx1.fill(self,"interpreter",{},smalltalk.PluggableExporter)})},
  2470. args: [],
  2471. source: "interpreter\x0a\x09^ RecipeInterpreter new",
  2472. messageSends: ["new"],
  2473. referencedClasses: ["RecipeInterpreter"]
  2474. }),
  2475. smalltalk.PluggableExporter);
  2476. smalltalk.addMethod(
  2477. smalltalk.method({
  2478. selector: "recipe",
  2479. category: 'accessing',
  2480. fn: function (){
  2481. var self=this;
  2482. return smalltalk.withContext(function($ctx1) {
  2483. var $1;
  2484. $1=self["@recipe"];
  2485. return $1;
  2486. }, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.PluggableExporter)})},
  2487. args: [],
  2488. source: "recipe\x0a\x09^recipe",
  2489. messageSends: [],
  2490. referencedClasses: []
  2491. }),
  2492. smalltalk.PluggableExporter);
  2493. smalltalk.addMethod(
  2494. smalltalk.method({
  2495. selector: "recipe:",
  2496. category: 'accessing',
  2497. fn: function (anArray){
  2498. var self=this;
  2499. return smalltalk.withContext(function($ctx1) {
  2500. self["@recipe"]=anArray;
  2501. return self}, function($ctx1) {$ctx1.fill(self,"recipe:",{anArray:anArray},smalltalk.PluggableExporter)})},
  2502. args: ["anArray"],
  2503. source: "recipe: anArray\x0a\x09recipe := anArray",
  2504. messageSends: [],
  2505. referencedClasses: []
  2506. }),
  2507. smalltalk.PluggableExporter);
  2508. smalltalk.addMethod(
  2509. smalltalk.method({
  2510. selector: "forRecipe:",
  2511. category: 'instance creation',
  2512. fn: function (aRecipe){
  2513. var self=this;
  2514. return smalltalk.withContext(function($ctx1) {
  2515. var $2,$3,$1;
  2516. $2=self._new();
  2517. _st($2)._recipe_(aRecipe);
  2518. $3=_st($2)._yourself();
  2519. $1=$3;
  2520. return $1;
  2521. }, function($ctx1) {$ctx1.fill(self,"forRecipe:",{aRecipe:aRecipe},smalltalk.PluggableExporter.klass)})},
  2522. args: ["aRecipe"],
  2523. source: "forRecipe: aRecipe\x0a\x09^self new recipe: aRecipe; yourself",
  2524. messageSends: ["recipe:", "new", "yourself"],
  2525. referencedClasses: []
  2526. }),
  2527. smalltalk.PluggableExporter.klass);
  2528. smalltalk.addMethod(
  2529. smalltalk.method({
  2530. selector: "ownClassesOfPackage:",
  2531. category: 'convenience',
  2532. fn: function (package_){
  2533. var self=this;
  2534. return smalltalk.withContext(function($ctx1) {
  2535. var $1;
  2536. $1=_st(_st(package_)._sortedClasses())._asSet();
  2537. return $1;
  2538. }, function($ctx1) {$ctx1.fill(self,"ownClassesOfPackage:",{package_:package_},smalltalk.PluggableExporter.klass)})},
  2539. args: ["package"],
  2540. source: "ownClassesOfPackage: package\x0a\x09\x22Export classes in dependency order.\x0a\x09Update (issue #171): Remove duplicates for export\x22\x0a\x09^package sortedClasses asSet",
  2541. messageSends: ["asSet", "sortedClasses"],
  2542. referencedClasses: []
  2543. }),
  2544. smalltalk.PluggableExporter.klass);
  2545. smalltalk.addClass('RecipeInterpreter', smalltalk.Object, [], 'Importer-Exporter');
  2546. smalltalk.RecipeInterpreter.comment="I am an interpreter for export recipes.\x0a\x0a## Recipe format\x0a\x0aRecipe is an array, which can contain two kinds of elements:\x0a\x0a - an assocation where the key is the receiver and the value is a two-arguments selector\x0a In this case, `receiver perform: selector withArguments: { data. stream }` is called.\x0a\x09This essentially defines one step of export process.\x0a\x09The key (eg. receiver) is presumed to be some kind of 'repository' of the exporting methods\x0a\x09that just format appropriate aspect of data into a stream; like a class or a singleton,\x0a\x09so that the recipe itself can be decoupled from data.\x0a\x0a - a subarray, where first element is special and the rest is recursive recipe.\x0a\x0a `subarray first` must be an association similar to one above,\x0a\x09with key being the 'repository' receiver, but value is one-arg selector.\x0a\x09In this case, `receiver perform: selector withArguments: { data }` should create a collection.\x0a\x09Then, the sub-recipe (`subarray allButFirst`) is applied to every element of a collection, eg.\x0a\x09 collection do: [ :each | self export: each using: sa allButFirst on: stream ]";
  2547. smalltalk.addMethod(
  2548. smalltalk.method({
  2549. selector: "interpret:for:on:",
  2550. category: 'interpreting',
  2551. fn: function (aRecipe,anObject,aStream){
  2552. var self=this;
  2553. var recipeStream;
  2554. return smalltalk.withContext(function($ctx1) {
  2555. recipeStream=_st(aRecipe)._readStream();
  2556. _st((function(){
  2557. return smalltalk.withContext(function($ctx2) {
  2558. return _st(recipeStream)._atEnd();
  2559. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
  2560. return smalltalk.withContext(function($ctx2) {
  2561. return self._interpretStep_for_on_(_st(recipeStream)._next(),anObject,aStream);
  2562. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2563. return self}, function($ctx1) {$ctx1.fill(self,"interpret:for:on:",{aRecipe:aRecipe,anObject:anObject,aStream:aStream,recipeStream:recipeStream},smalltalk.RecipeInterpreter)})},
  2564. args: ["aRecipe", "anObject", "aStream"],
  2565. source: "interpret: aRecipe for: anObject on: aStream\x0a\x09| recipeStream |\x0a\x09\x0a\x09recipeStream := aRecipe readStream.\x0a\x09\x0a\x09[ recipeStream atEnd ] whileFalse: [\x0a\x09\x09self \x0a\x09\x09\x09interpretStep: recipeStream next\x0a\x09\x09\x09for: anObject\x0a\x09\x09\x09on: aStream ]",
  2566. messageSends: ["readStream", "whileFalse:", "interpretStep:for:on:", "next", "atEnd"],
  2567. referencedClasses: []
  2568. }),
  2569. smalltalk.RecipeInterpreter);
  2570. smalltalk.addMethod(
  2571. smalltalk.method({
  2572. selector: "interpretStep:for:on:",
  2573. category: 'interpreting',
  2574. fn: function (aRecipeStep,anObject,aStream){
  2575. var self=this;
  2576. return smalltalk.withContext(function($ctx1) {
  2577. var $1,$2;
  2578. $1=_st(_st(aRecipeStep)._value()).__eq_eq(aRecipeStep);
  2579. if(smalltalk.assert($1)){
  2580. $2=self._interpretSubRecipe_for_on_(aRecipeStep,anObject,aStream);
  2581. return $2;
  2582. };
  2583. _st(_st(aRecipeStep)._key())._perform_withArguments_(_st(aRecipeStep)._value(),[anObject,aStream]);
  2584. return self}, function($ctx1) {$ctx1.fill(self,"interpretStep:for:on:",{aRecipeStep:aRecipeStep,anObject:anObject,aStream:aStream},smalltalk.RecipeInterpreter)})},
  2585. args: ["aRecipeStep", "anObject", "aStream"],
  2586. source: "interpretStep: aRecipeStep for: anObject on: aStream\x0a\x09aRecipeStep value == aRecipeStep ifTrue: [ \x0a\x09\x09^ self interpretSubRecipe: aRecipeStep for: anObject on: aStream ].\x0a\x09\x09\x09\x0a\x09aRecipeStep key perform: aRecipeStep value withArguments: { anObject. aStream }",
  2587. messageSends: ["ifTrue:", "interpretSubRecipe:for:on:", "==", "value", "perform:withArguments:", "key"],
  2588. referencedClasses: []
  2589. }),
  2590. smalltalk.RecipeInterpreter);
  2591. smalltalk.addMethod(
  2592. smalltalk.method({
  2593. selector: "interpretSubRecipe:for:on:",
  2594. category: 'interpreting',
  2595. fn: function (aRecipe,anObject,aStream){
  2596. var self=this;
  2597. var selection;
  2598. return smalltalk.withContext(function($ctx1) {
  2599. selection=_st(_st(_st(aRecipe)._first())._key())._perform_withArguments_(_st(_st(aRecipe)._first())._value(),[anObject]);
  2600. _st(selection)._do_((function(each){
  2601. return smalltalk.withContext(function($ctx2) {
  2602. return self._interpret_for_on_(_st(aRecipe)._allButFirst(),each,aStream);
  2603. }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
  2604. return self}, function($ctx1) {$ctx1.fill(self,"interpretSubRecipe:for:on:",{aRecipe:aRecipe,anObject:anObject,aStream:aStream,selection:selection},smalltalk.RecipeInterpreter)})},
  2605. args: ["aRecipe", "anObject", "aStream"],
  2606. source: "interpretSubRecipe: aRecipe for: anObject on: aStream\x0a\x09| selection |\x0a\x09selection := aRecipe first key \x0a\x09\x09perform: aRecipe first value \x0a\x09\x09withArguments: { anObject }.\x0a\x09selection do: [ :each |\x09\x0a\x09\x09self interpret: aRecipe allButFirst for: each on: aStream ]",
  2607. messageSends: ["perform:withArguments:", "value", "first", "key", "do:", "interpret:for:on:", "allButFirst"],
  2608. referencedClasses: []
  2609. }),
  2610. smalltalk.RecipeInterpreter);
  2611. smalltalk.addMethod(
  2612. smalltalk.method({
  2613. selector: "recipe",
  2614. category: 'accessing',
  2615. fn: function (){
  2616. var self=this;
  2617. return smalltalk.withContext(function($ctx1) {
  2618. var $1;
  2619. $1=self["@recipe"];
  2620. return $1;
  2621. }, function($ctx1) {$ctx1.fill(self,"recipe",{},smalltalk.RecipeInterpreter)})},
  2622. args: [],
  2623. source: "recipe\x0a\x09^recipe",
  2624. messageSends: [],
  2625. referencedClasses: []
  2626. }),
  2627. smalltalk.RecipeInterpreter);
  2628. smalltalk.addMethod(
  2629. smalltalk.method({
  2630. selector: "recipe:",
  2631. category: 'accessing',
  2632. fn: function (anArray){
  2633. var self=this;
  2634. return smalltalk.withContext(function($ctx1) {
  2635. self["@recipe"]=anArray;
  2636. return self}, function($ctx1) {$ctx1.fill(self,"recipe:",{anArray:anArray},smalltalk.RecipeInterpreter)})},
  2637. args: ["anArray"],
  2638. source: "recipe: anArray\x0a\x09recipe := anArray",
  2639. messageSends: [],
  2640. referencedClasses: []
  2641. }),
  2642. smalltalk.RecipeInterpreter);
  2643. smalltalk.addMethod(
  2644. smalltalk.method({
  2645. selector: "amdNamespace",
  2646. category: '*Importer-Exporter',
  2647. fn: function (){
  2648. var self=this;
  2649. return smalltalk.withContext(function($ctx1) {
  2650. return (self.transport && self.transport.amdNamespace) || nil;
  2651. return self}, function($ctx1) {$ctx1.fill(self,"amdNamespace",{},smalltalk.Package)})},
  2652. args: [],
  2653. source: "amdNamespace\x0a<return (self.transport && self.transport.amdNamespace) || nil>",
  2654. messageSends: [],
  2655. referencedClasses: []
  2656. }),
  2657. smalltalk.Package);
  2658. smalltalk.addMethod(
  2659. smalltalk.method({
  2660. selector: "amdNamespace:",
  2661. category: '*Importer-Exporter',
  2662. fn: function (aString){
  2663. var self=this;
  2664. return smalltalk.withContext(function($ctx1) {
  2665. if (!self.transport) { self.transport = { type: 'amd' }; }
  2666. if (self.transport.type !== 'amd') { throw new Error('Package '+self._name()+' has transport type '+self.transport.type+', not "amd".'); }
  2667. self.transport.amdNamespace = aString;;
  2668. return self}, function($ctx1) {$ctx1.fill(self,"amdNamespace:",{aString:aString},smalltalk.Package)})},
  2669. args: ["aString"],
  2670. source: "amdNamespace: aString\x0a<\x0a\x09if (!self.transport) { self.transport = { type: 'amd' }; }\x0a\x09if (self.transport.type !== 'amd') { throw new Error('Package '+self._name()+' has transport type '+self.transport.type+', not \x22amd\x22.'); }\x0a\x09self.transport.amdNamespace = aString;\x0a>",
  2671. messageSends: [],
  2672. referencedClasses: []
  2673. }),
  2674. smalltalk.Package);
  2675. smalltalk.addMethod(
  2676. smalltalk.method({
  2677. selector: "commit",
  2678. category: '*Importer-Exporter',
  2679. fn: function (){
  2680. var self=this;
  2681. return smalltalk.withContext(function($ctx1) {
  2682. var $1;
  2683. $1=_st(self._transport())._commit_(self);
  2684. return $1;
  2685. }, function($ctx1) {$ctx1.fill(self,"commit",{},smalltalk.Package)})},
  2686. args: [],
  2687. source: "commit\x0a\x09^ self transport commit: self",
  2688. messageSends: ["commit:", "transport"],
  2689. referencedClasses: []
  2690. }),
  2691. smalltalk.Package);
  2692. smalltalk.addMethod(
  2693. smalltalk.method({
  2694. selector: "commitPathJs",
  2695. category: '*Importer-Exporter',
  2696. fn: function (){
  2697. var self=this;
  2698. return smalltalk.withContext(function($ctx1) {
  2699. var $3,$2,$1;
  2700. $3=self["@extension"];
  2701. if(($receiver = $3) == nil || $receiver == undefined){
  2702. self["@extension"]=smalltalk.HashedCollection._from_([]);
  2703. $2=self["@extension"];
  2704. } else {
  2705. $2=$3;
  2706. };
  2707. $1=_st($2)._at_ifAbsent_("commitPathJs",(function(){
  2708. return smalltalk.withContext(function($ctx2) {
  2709. return _st(self._transport())._commitPathJsFor_(self);
  2710. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2711. return $1;
  2712. }, function($ctx1) {$ctx1.fill(self,"commitPathJs",{},smalltalk.Package)})},
  2713. args: [],
  2714. source: "commitPathJs\x0a\x09^ (extension ifNil: [ extension := #{} ]) at: #commitPathJs ifAbsent: [self transport commitPathJsFor: self]",
  2715. messageSends: ["at:ifAbsent:", "commitPathJsFor:", "transport", "ifNil:"],
  2716. referencedClasses: []
  2717. }),
  2718. smalltalk.Package);
  2719. smalltalk.addMethod(
  2720. smalltalk.method({
  2721. selector: "commitPathJs:",
  2722. category: '*Importer-Exporter',
  2723. fn: function (aString){
  2724. var self=this;
  2725. return smalltalk.withContext(function($ctx1) {
  2726. var $3,$2,$1;
  2727. $3=self["@extension"];
  2728. if(($receiver = $3) == nil || $receiver == undefined){
  2729. self["@extension"]=smalltalk.HashedCollection._from_([]);
  2730. $2=self["@extension"];
  2731. } else {
  2732. $2=$3;
  2733. };
  2734. $1=_st($2)._at_put_("commitPathJs",aString);
  2735. return $1;
  2736. }, function($ctx1) {$ctx1.fill(self,"commitPathJs:",{aString:aString},smalltalk.Package)})},
  2737. args: ["aString"],
  2738. source: "commitPathJs: aString\x0a\x09^ (extension ifNil: [ extension := #{} ]) at: #commitPathJs put: aString",
  2739. messageSends: ["at:put:", "ifNil:"],
  2740. referencedClasses: []
  2741. }),
  2742. smalltalk.Package);
  2743. smalltalk.addMethod(
  2744. smalltalk.method({
  2745. selector: "commitPathSt",
  2746. category: '*Importer-Exporter',
  2747. fn: function (){
  2748. var self=this;
  2749. return smalltalk.withContext(function($ctx1) {
  2750. var $3,$2,$1;
  2751. $3=self["@extension"];
  2752. if(($receiver = $3) == nil || $receiver == undefined){
  2753. self["@extension"]=smalltalk.HashedCollection._from_([]);
  2754. $2=self["@extension"];
  2755. } else {
  2756. $2=$3;
  2757. };
  2758. $1=_st($2)._at_ifAbsent_("commitPathSt",(function(){
  2759. return smalltalk.withContext(function($ctx2) {
  2760. return _st(self._transport())._commitPathStFor_(self);
  2761. }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
  2762. return $1;
  2763. }, function($ctx1) {$ctx1.fill(self,"commitPathSt",{},smalltalk.Package)})},
  2764. args: [],
  2765. source: "commitPathSt\x0a\x09^ (extension ifNil: [ extension := #{} ]) at: #commitPathSt ifAbsent: [self transport commitPathStFor: self]",
  2766. messageSends: ["at:ifAbsent:", "commitPathStFor:", "transport", "ifNil:"],
  2767. referencedClasses: []
  2768. }),
  2769. smalltalk.Package);
  2770. smalltalk.addMethod(
  2771. smalltalk.method({
  2772. selector: "commitPathSt:",
  2773. category: '*Importer-Exporter',
  2774. fn: function (aString){
  2775. var self=this;
  2776. return smalltalk.withContext(function($ctx1) {
  2777. var $3,$2,$1;
  2778. $3=self["@extension"];
  2779. if(($receiver = $3) == nil || $receiver == undefined){
  2780. self["@extension"]=smalltalk.HashedCollection._from_([]);
  2781. $2=self["@extension"];
  2782. } else {
  2783. $2=$3;
  2784. };
  2785. $1=_st($2)._at_put_("commitPathSt",aString);
  2786. return $1;
  2787. }, function($ctx1) {$ctx1.fill(self,"commitPathSt:",{aString:aString},smalltalk.Package)})},
  2788. args: ["aString"],
  2789. source: "commitPathSt: aString\x0a\x09^ (extension ifNil: [ extension := #{} ]) at: #commitPathSt put: aString",
  2790. messageSends: ["at:put:", "ifNil:"],
  2791. referencedClasses: []
  2792. }),
  2793. smalltalk.Package);
  2794. smalltalk.addMethod(
  2795. smalltalk.method({
  2796. selector: "transport",
  2797. category: '*Importer-Exporter',
  2798. fn: function (){
  2799. var self=this;
  2800. function $PackageHandler(){return smalltalk.PackageHandler||(typeof PackageHandler=="undefined"?nil:PackageHandler)}
  2801. return smalltalk.withContext(function($ctx1) {
  2802. var $1;
  2803. $1=_st($PackageHandler())._for_(self._transportType());
  2804. return $1;
  2805. }, function($ctx1) {$ctx1.fill(self,"transport",{},smalltalk.Package)})},
  2806. args: [],
  2807. source: "transport\x0a\x09^ PackageHandler for: self transportType",
  2808. messageSends: ["for:", "transportType"],
  2809. referencedClasses: ["PackageHandler"]
  2810. }),
  2811. smalltalk.Package);
  2812. smalltalk.addMethod(
  2813. smalltalk.method({
  2814. selector: "transportJson",
  2815. category: '*Importer-Exporter',
  2816. fn: function (){
  2817. var self=this;
  2818. return smalltalk.withContext(function($ctx1) {
  2819. return JSON.stringify(self.transport || null);;
  2820. return self}, function($ctx1) {$ctx1.fill(self,"transportJson",{},smalltalk.Package)})},
  2821. args: [],
  2822. source: "transportJson\x0a\x09<return JSON.stringify(self.transport || null);>",
  2823. messageSends: [],
  2824. referencedClasses: []
  2825. }),
  2826. smalltalk.Package);
  2827. smalltalk.addMethod(
  2828. smalltalk.method({
  2829. selector: "transportType",
  2830. category: '*Importer-Exporter',
  2831. fn: function (){
  2832. var self=this;
  2833. return smalltalk.withContext(function($ctx1) {
  2834. return (self.transport && self.transport.type) || 'unknown';;
  2835. return self}, function($ctx1) {$ctx1.fill(self,"transportType",{},smalltalk.Package)})},
  2836. args: [],
  2837. source: "transportType\x0a\x09<return (self.transport && self.transport.type) || 'unknown';>",
  2838. messageSends: [],
  2839. referencedClasses: []
  2840. }),
  2841. smalltalk.Package);
  2842. });