Helios-Commands-Browser.js 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340
  1. smalltalk.addPackage('Helios-Commands-Browser');
  2. smalltalk.addClass('HLBrowserCommand', smalltalk.HLModelCommand, [], 'Helios-Commands-Browser');
  3. smalltalk.addMethod(
  4. smalltalk.method({
  5. selector: "category",
  6. category: 'accessing',
  7. fn: function (){
  8. var self=this;
  9. return smalltalk.withContext(function($ctx1) {
  10. return nil;
  11. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLBrowserCommand)})},
  12. args: [],
  13. source: "category\x0a\x09^ nil",
  14. messageSends: [],
  15. referencedClasses: []
  16. }),
  17. smalltalk.HLBrowserCommand);
  18. smalltalk.addMethod(
  19. smalltalk.method({
  20. selector: "for:",
  21. category: 'instance creation',
  22. fn: function (aBrowserModel){
  23. var self=this;
  24. return smalltalk.withContext(function($ctx1) {
  25. var $2,$3,$1;
  26. $2=_st(self)._new();
  27. _st($2)._model_(aBrowserModel);
  28. $3=_st($2)._yourself();
  29. $1=$3;
  30. return $1;
  31. }, function($ctx1) {$ctx1.fill(self,"for:",{aBrowserModel:aBrowserModel},smalltalk.HLBrowserCommand.klass)})},
  32. args: ["aBrowserModel"],
  33. source: "for: aBrowserModel\x0a\x09^ self new\x0a \x09model: aBrowserModel;\x0a yourself",
  34. messageSends: ["model:", "new", "yourself"],
  35. referencedClasses: []
  36. }),
  37. smalltalk.HLBrowserCommand.klass);
  38. smalltalk.addClass('HLBrowserGoToCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  39. smalltalk.addMethod(
  40. smalltalk.method({
  41. selector: "key",
  42. category: 'accessing',
  43. fn: function (){
  44. var self=this;
  45. return smalltalk.withContext(function($ctx1) {
  46. return "g";
  47. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLBrowserGoToCommand.klass)})},
  48. args: [],
  49. source: "key\x0a\x09^ 'g'",
  50. messageSends: [],
  51. referencedClasses: []
  52. }),
  53. smalltalk.HLBrowserGoToCommand.klass);
  54. smalltalk.addMethod(
  55. smalltalk.method({
  56. selector: "label",
  57. category: 'accessing',
  58. fn: function (){
  59. var self=this;
  60. return smalltalk.withContext(function($ctx1) {
  61. return "Go to";
  62. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLBrowserGoToCommand.klass)})},
  63. args: [],
  64. source: "label\x0a\x09^ 'Go to'",
  65. messageSends: [],
  66. referencedClasses: []
  67. }),
  68. smalltalk.HLBrowserGoToCommand.klass);
  69. smalltalk.addClass('HLGoToClassesCommand', smalltalk.HLBrowserGoToCommand, [], 'Helios-Commands-Browser');
  70. smalltalk.addMethod(
  71. smalltalk.method({
  72. selector: "execute",
  73. category: 'executing',
  74. fn: function (){
  75. var self=this;
  76. return smalltalk.withContext(function($ctx1) {
  77. _st(_st(self)._model())._focusOnClasses();
  78. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLGoToClassesCommand)})},
  79. args: [],
  80. source: "execute\x0a\x09self model focusOnClasses",
  81. messageSends: ["focusOnClasses", "model"],
  82. referencedClasses: []
  83. }),
  84. smalltalk.HLGoToClassesCommand);
  85. smalltalk.addMethod(
  86. smalltalk.method({
  87. selector: "key",
  88. category: 'accessing',
  89. fn: function (){
  90. var self=this;
  91. return smalltalk.withContext(function($ctx1) {
  92. return "c";
  93. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLGoToClassesCommand.klass)})},
  94. args: [],
  95. source: "key\x0a\x09^ 'c'",
  96. messageSends: [],
  97. referencedClasses: []
  98. }),
  99. smalltalk.HLGoToClassesCommand.klass);
  100. smalltalk.addMethod(
  101. smalltalk.method({
  102. selector: "label",
  103. category: 'accessing',
  104. fn: function (){
  105. var self=this;
  106. return smalltalk.withContext(function($ctx1) {
  107. return "Classes";
  108. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLGoToClassesCommand.klass)})},
  109. args: [],
  110. source: "label\x0a\x09^ 'Classes'",
  111. messageSends: [],
  112. referencedClasses: []
  113. }),
  114. smalltalk.HLGoToClassesCommand.klass);
  115. smalltalk.addClass('HLGoToMethodsCommand', smalltalk.HLBrowserGoToCommand, [], 'Helios-Commands-Browser');
  116. smalltalk.addMethod(
  117. smalltalk.method({
  118. selector: "execute",
  119. category: 'executing',
  120. fn: function (){
  121. var self=this;
  122. return smalltalk.withContext(function($ctx1) {
  123. _st(_st(self)._model())._focusOnMethods();
  124. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLGoToMethodsCommand)})},
  125. args: [],
  126. source: "execute\x0a\x09self model focusOnMethods",
  127. messageSends: ["focusOnMethods", "model"],
  128. referencedClasses: []
  129. }),
  130. smalltalk.HLGoToMethodsCommand);
  131. smalltalk.addMethod(
  132. smalltalk.method({
  133. selector: "key",
  134. category: 'accessing',
  135. fn: function (){
  136. var self=this;
  137. return smalltalk.withContext(function($ctx1) {
  138. return "m";
  139. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLGoToMethodsCommand.klass)})},
  140. args: [],
  141. source: "key\x0a\x09^ 'm'",
  142. messageSends: [],
  143. referencedClasses: []
  144. }),
  145. smalltalk.HLGoToMethodsCommand.klass);
  146. smalltalk.addMethod(
  147. smalltalk.method({
  148. selector: "label",
  149. category: 'accessing',
  150. fn: function (){
  151. var self=this;
  152. return smalltalk.withContext(function($ctx1) {
  153. return "Methods";
  154. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLGoToMethodsCommand.klass)})},
  155. args: [],
  156. source: "label\x0a\x09^ 'Methods'",
  157. messageSends: [],
  158. referencedClasses: []
  159. }),
  160. smalltalk.HLGoToMethodsCommand.klass);
  161. smalltalk.addClass('HLGoToPackagesCommand', smalltalk.HLBrowserGoToCommand, [], 'Helios-Commands-Browser');
  162. smalltalk.addMethod(
  163. smalltalk.method({
  164. selector: "execute",
  165. category: 'executing',
  166. fn: function (){
  167. var self=this;
  168. return smalltalk.withContext(function($ctx1) {
  169. _st(_st(self)._model())._focusOnPackages();
  170. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLGoToPackagesCommand)})},
  171. args: [],
  172. source: "execute\x0a\x09self model focusOnPackages",
  173. messageSends: ["focusOnPackages", "model"],
  174. referencedClasses: []
  175. }),
  176. smalltalk.HLGoToPackagesCommand);
  177. smalltalk.addMethod(
  178. smalltalk.method({
  179. selector: "key",
  180. category: 'accessing',
  181. fn: function (){
  182. var self=this;
  183. return smalltalk.withContext(function($ctx1) {
  184. return "p";
  185. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLGoToPackagesCommand.klass)})},
  186. args: [],
  187. source: "key\x0a\x09^ 'p'",
  188. messageSends: [],
  189. referencedClasses: []
  190. }),
  191. smalltalk.HLGoToPackagesCommand.klass);
  192. smalltalk.addMethod(
  193. smalltalk.method({
  194. selector: "label",
  195. category: 'accessing',
  196. fn: function (){
  197. var self=this;
  198. return smalltalk.withContext(function($ctx1) {
  199. return "Packages";
  200. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLGoToPackagesCommand.klass)})},
  201. args: [],
  202. source: "label\x0a\x09^ 'Packages'",
  203. messageSends: [],
  204. referencedClasses: []
  205. }),
  206. smalltalk.HLGoToPackagesCommand.klass);
  207. smalltalk.addClass('HLGoToProtocolsCommand', smalltalk.HLBrowserGoToCommand, [], 'Helios-Commands-Browser');
  208. smalltalk.addMethod(
  209. smalltalk.method({
  210. selector: "execute",
  211. category: 'executing',
  212. fn: function (){
  213. var self=this;
  214. return smalltalk.withContext(function($ctx1) {
  215. _st(_st(self)._model())._focusOnProtocols();
  216. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLGoToProtocolsCommand)})},
  217. args: [],
  218. source: "execute\x0a\x09self model focusOnProtocols",
  219. messageSends: ["focusOnProtocols", "model"],
  220. referencedClasses: []
  221. }),
  222. smalltalk.HLGoToProtocolsCommand);
  223. smalltalk.addMethod(
  224. smalltalk.method({
  225. selector: "key",
  226. category: 'accessing',
  227. fn: function (){
  228. var self=this;
  229. return smalltalk.withContext(function($ctx1) {
  230. return "t";
  231. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLGoToProtocolsCommand.klass)})},
  232. args: [],
  233. source: "key\x0a\x09^ 't'",
  234. messageSends: [],
  235. referencedClasses: []
  236. }),
  237. smalltalk.HLGoToProtocolsCommand.klass);
  238. smalltalk.addMethod(
  239. smalltalk.method({
  240. selector: "label",
  241. category: 'accessing',
  242. fn: function (){
  243. var self=this;
  244. return smalltalk.withContext(function($ctx1) {
  245. return "Protocols";
  246. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLGoToProtocolsCommand.klass)})},
  247. args: [],
  248. source: "label\x0a\x09^ 'Protocols'",
  249. messageSends: [],
  250. referencedClasses: []
  251. }),
  252. smalltalk.HLGoToProtocolsCommand.klass);
  253. smalltalk.addClass('HLGoToSourceCodeCommand', smalltalk.HLBrowserGoToCommand, [], 'Helios-Commands-Browser');
  254. smalltalk.addMethod(
  255. smalltalk.method({
  256. selector: "execute",
  257. category: 'executing',
  258. fn: function (){
  259. var self=this;
  260. return smalltalk.withContext(function($ctx1) {
  261. _st(_st(self)._model())._focusOnSourceCode();
  262. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLGoToSourceCodeCommand)})},
  263. args: [],
  264. source: "execute\x0a\x09self model focusOnSourceCode",
  265. messageSends: ["focusOnSourceCode", "model"],
  266. referencedClasses: []
  267. }),
  268. smalltalk.HLGoToSourceCodeCommand);
  269. smalltalk.addMethod(
  270. smalltalk.method({
  271. selector: "key",
  272. category: 'accessing',
  273. fn: function (){
  274. var self=this;
  275. return smalltalk.withContext(function($ctx1) {
  276. return "s";
  277. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLGoToSourceCodeCommand.klass)})},
  278. args: [],
  279. source: "key\x0a\x09^ 's'",
  280. messageSends: [],
  281. referencedClasses: []
  282. }),
  283. smalltalk.HLGoToSourceCodeCommand.klass);
  284. smalltalk.addMethod(
  285. smalltalk.method({
  286. selector: "label",
  287. category: 'accessing',
  288. fn: function (){
  289. var self=this;
  290. return smalltalk.withContext(function($ctx1) {
  291. return "Source code";
  292. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLGoToSourceCodeCommand.klass)})},
  293. args: [],
  294. source: "label\x0a\x09^ 'Source code'",
  295. messageSends: [],
  296. referencedClasses: []
  297. }),
  298. smalltalk.HLGoToSourceCodeCommand.klass);
  299. smalltalk.addClass('HLCommitPackageCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  300. smalltalk.addMethod(
  301. smalltalk.method({
  302. selector: "category",
  303. category: 'accessing',
  304. fn: function (){
  305. var self=this;
  306. return smalltalk.withContext(function($ctx1) {
  307. return "Packages";
  308. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLCommitPackageCommand)})},
  309. args: [],
  310. source: "category\x0a\x09^ 'Packages'",
  311. messageSends: [],
  312. referencedClasses: []
  313. }),
  314. smalltalk.HLCommitPackageCommand);
  315. smalltalk.addMethod(
  316. smalltalk.method({
  317. selector: "execute",
  318. category: 'executing',
  319. fn: function (){
  320. var self=this;
  321. return smalltalk.withContext(function($ctx1) {
  322. _st(_st(self)._model())._commitPackage();
  323. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLCommitPackageCommand)})},
  324. args: [],
  325. source: "execute\x0a\x09self model commitPackage",
  326. messageSends: ["commitPackage", "model"],
  327. referencedClasses: []
  328. }),
  329. smalltalk.HLCommitPackageCommand);
  330. smalltalk.addMethod(
  331. smalltalk.method({
  332. selector: "isActive",
  333. category: 'testing',
  334. fn: function (){
  335. var self=this;
  336. return smalltalk.withContext(function($ctx1) {
  337. return true;
  338. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLCommitPackageCommand)})},
  339. args: [],
  340. source: "isActive\x0a\x09^ true\x0a\x09\x22 slf model isPackageDirty\x22",
  341. messageSends: [],
  342. referencedClasses: []
  343. }),
  344. smalltalk.HLCommitPackageCommand);
  345. smalltalk.addMethod(
  346. smalltalk.method({
  347. selector: "key",
  348. category: 'accessing',
  349. fn: function (){
  350. var self=this;
  351. return smalltalk.withContext(function($ctx1) {
  352. return "k";
  353. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLCommitPackageCommand.klass)})},
  354. args: [],
  355. source: "key\x0a\x09^ 'k'",
  356. messageSends: [],
  357. referencedClasses: []
  358. }),
  359. smalltalk.HLCommitPackageCommand.klass);
  360. smalltalk.addMethod(
  361. smalltalk.method({
  362. selector: "label",
  363. category: 'accessing',
  364. fn: function (){
  365. var self=this;
  366. return smalltalk.withContext(function($ctx1) {
  367. return "Commit";
  368. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLCommitPackageCommand.klass)})},
  369. args: [],
  370. source: "label\x0a\x09^ 'Commit'",
  371. messageSends: [],
  372. referencedClasses: []
  373. }),
  374. smalltalk.HLCommitPackageCommand.klass);
  375. smalltalk.addClass('HLCopyCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  376. smalltalk.addMethod(
  377. smalltalk.method({
  378. selector: "key",
  379. category: 'accessing',
  380. fn: function (){
  381. var self=this;
  382. return smalltalk.withContext(function($ctx1) {
  383. return "c";
  384. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLCopyCommand.klass)})},
  385. args: [],
  386. source: "key\x0a\x09^ 'c'",
  387. messageSends: [],
  388. referencedClasses: []
  389. }),
  390. smalltalk.HLCopyCommand.klass);
  391. smalltalk.addMethod(
  392. smalltalk.method({
  393. selector: "label",
  394. category: 'accessing',
  395. fn: function (){
  396. var self=this;
  397. return smalltalk.withContext(function($ctx1) {
  398. return "Copy";
  399. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLCopyCommand.klass)})},
  400. args: [],
  401. source: "label\x0a\x09^ 'Copy'",
  402. messageSends: [],
  403. referencedClasses: []
  404. }),
  405. smalltalk.HLCopyCommand.klass);
  406. smalltalk.addClass('HLCopyClassCommand', smalltalk.HLCopyCommand, [], 'Helios-Commands-Browser');
  407. smalltalk.addMethod(
  408. smalltalk.method({
  409. selector: "category",
  410. category: 'accessing',
  411. fn: function (){
  412. var self=this;
  413. return smalltalk.withContext(function($ctx1) {
  414. return "Classes";
  415. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLCopyClassCommand)})},
  416. args: [],
  417. source: "category\x0a\x09^ 'Classes'",
  418. messageSends: [],
  419. referencedClasses: []
  420. }),
  421. smalltalk.HLCopyClassCommand);
  422. smalltalk.addMethod(
  423. smalltalk.method({
  424. selector: "defaultInput",
  425. category: 'defaults',
  426. fn: function (){
  427. var self=this;
  428. return smalltalk.withContext(function($ctx1) {
  429. var $1;
  430. $1=_st(_st(_st(self)._model())._selectedClass())._name();
  431. return $1;
  432. }, function($ctx1) {$ctx1.fill(self,"defaultInput",{},smalltalk.HLCopyClassCommand)})},
  433. args: [],
  434. source: "defaultInput\x0a\x09^ self model selectedClass name",
  435. messageSends: ["name", "selectedClass", "model"],
  436. referencedClasses: []
  437. }),
  438. smalltalk.HLCopyClassCommand);
  439. smalltalk.addMethod(
  440. smalltalk.method({
  441. selector: "displayLabel",
  442. category: 'accessing',
  443. fn: function (){
  444. var self=this;
  445. return smalltalk.withContext(function($ctx1) {
  446. return "New class name:";
  447. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLCopyClassCommand)})},
  448. args: [],
  449. source: "displayLabel\x0a\x09^ 'New class name:'",
  450. messageSends: [],
  451. referencedClasses: []
  452. }),
  453. smalltalk.HLCopyClassCommand);
  454. smalltalk.addMethod(
  455. smalltalk.method({
  456. selector: "execute",
  457. category: 'executing',
  458. fn: function (){
  459. var self=this;
  460. return smalltalk.withContext(function($ctx1) {
  461. _st(_st(self)._model())._copyClassTo_(_st(self)._input());
  462. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLCopyClassCommand)})},
  463. args: [],
  464. source: "execute\x0a\x09self model copyClassTo: self input",
  465. messageSends: ["copyClassTo:", "input", "model"],
  466. referencedClasses: []
  467. }),
  468. smalltalk.HLCopyClassCommand);
  469. smalltalk.addMethod(
  470. smalltalk.method({
  471. selector: "isActive",
  472. category: 'testing',
  473. fn: function (){
  474. var self=this;
  475. return smalltalk.withContext(function($ctx1) {
  476. var $1;
  477. $1=_st(_st(_st(self)._model())._selectedClass())._notNil();
  478. return $1;
  479. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLCopyClassCommand)})},
  480. args: [],
  481. source: "isActive\x0a\x09^ self model selectedClass notNil",
  482. messageSends: ["notNil", "selectedClass", "model"],
  483. referencedClasses: []
  484. }),
  485. smalltalk.HLCopyClassCommand);
  486. smalltalk.addMethod(
  487. smalltalk.method({
  488. selector: "isInputRequired",
  489. category: 'testing',
  490. fn: function (){
  491. var self=this;
  492. return smalltalk.withContext(function($ctx1) {
  493. return true;
  494. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLCopyClassCommand)})},
  495. args: [],
  496. source: "isInputRequired\x0a\x09^ true",
  497. messageSends: [],
  498. referencedClasses: []
  499. }),
  500. smalltalk.HLCopyClassCommand);
  501. smalltalk.addMethod(
  502. smalltalk.method({
  503. selector: "key",
  504. category: 'accessing',
  505. fn: function (){
  506. var self=this;
  507. return smalltalk.withContext(function($ctx1) {
  508. return "c";
  509. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLCopyClassCommand.klass)})},
  510. args: [],
  511. source: "key\x0a\x09^ 'c'",
  512. messageSends: [],
  513. referencedClasses: []
  514. }),
  515. smalltalk.HLCopyClassCommand.klass);
  516. smalltalk.addMethod(
  517. smalltalk.method({
  518. selector: "label",
  519. category: 'accessing',
  520. fn: function (){
  521. var self=this;
  522. return smalltalk.withContext(function($ctx1) {
  523. return "Class";
  524. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLCopyClassCommand.klass)})},
  525. args: [],
  526. source: "label\x0a\x09^ 'Class'",
  527. messageSends: [],
  528. referencedClasses: []
  529. }),
  530. smalltalk.HLCopyClassCommand.klass);
  531. smalltalk.addMethod(
  532. smalltalk.method({
  533. selector: "menuLabel",
  534. category: 'accessing',
  535. fn: function (){
  536. var self=this;
  537. return smalltalk.withContext(function($ctx1) {
  538. return "Copy class...";
  539. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLCopyClassCommand.klass)})},
  540. args: [],
  541. source: "menuLabel\x0a\x09^ 'Copy class...'",
  542. messageSends: [],
  543. referencedClasses: []
  544. }),
  545. smalltalk.HLCopyClassCommand.klass);
  546. smalltalk.addClass('HLFindCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  547. smalltalk.addMethod(
  548. smalltalk.method({
  549. selector: "key",
  550. category: 'accessing',
  551. fn: function (){
  552. var self=this;
  553. return smalltalk.withContext(function($ctx1) {
  554. return "f";
  555. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLFindCommand.klass)})},
  556. args: [],
  557. source: "key\x0a\x09^ 'f'",
  558. messageSends: [],
  559. referencedClasses: []
  560. }),
  561. smalltalk.HLFindCommand.klass);
  562. smalltalk.addMethod(
  563. smalltalk.method({
  564. selector: "label",
  565. category: 'accessing',
  566. fn: function (){
  567. var self=this;
  568. return smalltalk.withContext(function($ctx1) {
  569. return "Find";
  570. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLFindCommand.klass)})},
  571. args: [],
  572. source: "label\x0a\x09^ 'Find'",
  573. messageSends: [],
  574. referencedClasses: []
  575. }),
  576. smalltalk.HLFindCommand.klass);
  577. smalltalk.addClass('HLFindClassCommand', smalltalk.HLFindCommand, [], 'Helios-Commands-Browser');
  578. smalltalk.addMethod(
  579. smalltalk.method({
  580. selector: "displayLabel",
  581. category: 'accessing',
  582. fn: function (){
  583. var self=this;
  584. return smalltalk.withContext(function($ctx1) {
  585. return "select a class";
  586. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLFindClassCommand)})},
  587. args: [],
  588. source: "displayLabel\x0a\x09^ 'select a class'",
  589. messageSends: [],
  590. referencedClasses: []
  591. }),
  592. smalltalk.HLFindClassCommand);
  593. smalltalk.addMethod(
  594. smalltalk.method({
  595. selector: "execute",
  596. category: 'executing',
  597. fn: function (){
  598. var self=this;
  599. return smalltalk.withContext(function($ctx1) {
  600. _st(_st(self)._model())._openClassNamed_(_st(self)._input());
  601. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLFindClassCommand)})},
  602. args: [],
  603. source: "execute\x0a\x09self model openClassNamed: self input",
  604. messageSends: ["openClassNamed:", "input", "model"],
  605. referencedClasses: []
  606. }),
  607. smalltalk.HLFindClassCommand);
  608. smalltalk.addMethod(
  609. smalltalk.method({
  610. selector: "inputCompletion",
  611. category: 'accessing',
  612. fn: function (){
  613. var self=this;
  614. return smalltalk.withContext(function($ctx1) {
  615. var $1;
  616. $1=_st(_st(self)._model())._availableClassNames();
  617. return $1;
  618. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},smalltalk.HLFindClassCommand)})},
  619. args: [],
  620. source: "inputCompletion\x0a\x09^ self model availableClassNames",
  621. messageSends: ["availableClassNames", "model"],
  622. referencedClasses: []
  623. }),
  624. smalltalk.HLFindClassCommand);
  625. smalltalk.addMethod(
  626. smalltalk.method({
  627. selector: "inputLabel",
  628. category: 'accessing',
  629. fn: function (){
  630. var self=this;
  631. return smalltalk.withContext(function($ctx1) {
  632. return "Find a class";
  633. }, function($ctx1) {$ctx1.fill(self,"inputLabel",{},smalltalk.HLFindClassCommand)})},
  634. args: [],
  635. source: "inputLabel\x0a\x09^ 'Find a class'",
  636. messageSends: [],
  637. referencedClasses: []
  638. }),
  639. smalltalk.HLFindClassCommand);
  640. smalltalk.addMethod(
  641. smalltalk.method({
  642. selector: "isInputRequired",
  643. category: 'testing',
  644. fn: function (){
  645. var self=this;
  646. return smalltalk.withContext(function($ctx1) {
  647. return true;
  648. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLFindClassCommand)})},
  649. args: [],
  650. source: "isInputRequired\x0a\x09^ true",
  651. messageSends: [],
  652. referencedClasses: []
  653. }),
  654. smalltalk.HLFindClassCommand);
  655. smalltalk.addMethod(
  656. smalltalk.method({
  657. selector: "key",
  658. category: 'accessing',
  659. fn: function (){
  660. var self=this;
  661. return smalltalk.withContext(function($ctx1) {
  662. return "c";
  663. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLFindClassCommand.klass)})},
  664. args: [],
  665. source: "key\x0a\x09^ 'c'",
  666. messageSends: [],
  667. referencedClasses: []
  668. }),
  669. smalltalk.HLFindClassCommand.klass);
  670. smalltalk.addMethod(
  671. smalltalk.method({
  672. selector: "label",
  673. category: 'accessing',
  674. fn: function (){
  675. var self=this;
  676. return smalltalk.withContext(function($ctx1) {
  677. return "Class";
  678. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLFindClassCommand.klass)})},
  679. args: [],
  680. source: "label\x0a\x09^ 'Class'",
  681. messageSends: [],
  682. referencedClasses: []
  683. }),
  684. smalltalk.HLFindClassCommand.klass);
  685. smalltalk.addClass('HLFindReferencesCommand', smalltalk.HLFindCommand, [], 'Helios-Commands-Browser');
  686. smalltalk.addMethod(
  687. smalltalk.method({
  688. selector: "defaultInput",
  689. category: 'defaults',
  690. fn: function (){
  691. var self=this;
  692. return smalltalk.withContext(function($ctx1) {
  693. var $2,$3,$1;
  694. $2=_st(_st(self)._model())._selectedMethod();
  695. if(($receiver = $2) == nil || $receiver == undefined){
  696. $3=_st(_st(self)._model())._selectedClass();
  697. if(($receiver = $3) == nil || $receiver == undefined){
  698. $1="";
  699. } else {
  700. var class_;
  701. class_=$receiver;
  702. $1=_st(class_)._name();
  703. };
  704. } else {
  705. var method;
  706. method=$receiver;
  707. $1=_st(method)._selector();
  708. };
  709. return $1;
  710. }, function($ctx1) {$ctx1.fill(self,"defaultInput",{},smalltalk.HLFindReferencesCommand)})},
  711. args: [],
  712. source: "defaultInput\x0a\x09^ self model selectedMethod \x0a\x09\x09ifNil: [\x0a\x09\x09\x09self model selectedClass\x0a\x09\x09\x09\x09ifNil: [ '' ]\x0a\x09\x09\x09\x09ifNotNil: [ :class | class name ] ]\x0a\x09\x09ifNotNil: [ :method | method selector ] ",
  713. messageSends: ["ifNil:ifNotNil:", "name", "selectedClass", "model", "selector", "selectedMethod"],
  714. referencedClasses: []
  715. }),
  716. smalltalk.HLFindReferencesCommand);
  717. smalltalk.addMethod(
  718. smalltalk.method({
  719. selector: "displayLabel",
  720. category: 'accessing',
  721. fn: function (){
  722. var self=this;
  723. return smalltalk.withContext(function($ctx1) {
  724. return "find references";
  725. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLFindReferencesCommand)})},
  726. args: [],
  727. source: "displayLabel\x0a\x09^ 'find references'",
  728. messageSends: [],
  729. referencedClasses: []
  730. }),
  731. smalltalk.HLFindReferencesCommand);
  732. smalltalk.addMethod(
  733. smalltalk.method({
  734. selector: "execute",
  735. category: 'executing',
  736. fn: function (){
  737. var self=this;
  738. function $HLReferences(){return smalltalk.HLReferences||(typeof HLReferences=="undefined"?nil:HLReferences)}
  739. return smalltalk.withContext(function($ctx1) {
  740. var $1,$2;
  741. $1=_st($HLReferences())._new();
  742. _st($1)._open();
  743. $2=_st($1)._search_(_st(self)._input());
  744. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLFindReferencesCommand)})},
  745. args: [],
  746. source: "execute\x0a\x09HLReferences new \x0a\x09\x09open;\x0a\x09\x09search: self input",
  747. messageSends: ["open", "new", "search:", "input"],
  748. referencedClasses: ["HLReferences"]
  749. }),
  750. smalltalk.HLFindReferencesCommand);
  751. smalltalk.addMethod(
  752. smalltalk.method({
  753. selector: "inputCompletion",
  754. category: 'accessing',
  755. fn: function (){
  756. var self=this;
  757. return smalltalk.withContext(function($ctx1) {
  758. var $1;
  759. $1=_st(_st(_st(self)._model())._availableClassNames()).__comma(_st(_st(self)._model())._allSelectors());
  760. return $1;
  761. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},smalltalk.HLFindReferencesCommand)})},
  762. args: [],
  763. source: "inputCompletion\x0a\x09^ self model availableClassNames, self model allSelectors",
  764. messageSends: [",", "allSelectors", "model", "availableClassNames"],
  765. referencedClasses: []
  766. }),
  767. smalltalk.HLFindReferencesCommand);
  768. smalltalk.addMethod(
  769. smalltalk.method({
  770. selector: "inputLabel",
  771. category: 'accessing',
  772. fn: function (){
  773. var self=this;
  774. return smalltalk.withContext(function($ctx1) {
  775. return "Find references of";
  776. }, function($ctx1) {$ctx1.fill(self,"inputLabel",{},smalltalk.HLFindReferencesCommand)})},
  777. args: [],
  778. source: "inputLabel\x0a\x09^ 'Find references of'",
  779. messageSends: [],
  780. referencedClasses: []
  781. }),
  782. smalltalk.HLFindReferencesCommand);
  783. smalltalk.addMethod(
  784. smalltalk.method({
  785. selector: "isInputRequired",
  786. category: 'testing',
  787. fn: function (){
  788. var self=this;
  789. return smalltalk.withContext(function($ctx1) {
  790. return true;
  791. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLFindReferencesCommand)})},
  792. args: [],
  793. source: "isInputRequired\x0a\x09^ true",
  794. messageSends: [],
  795. referencedClasses: []
  796. }),
  797. smalltalk.HLFindReferencesCommand);
  798. smalltalk.addMethod(
  799. smalltalk.method({
  800. selector: "key",
  801. category: 'accessing',
  802. fn: function (){
  803. var self=this;
  804. return smalltalk.withContext(function($ctx1) {
  805. return "r";
  806. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLFindReferencesCommand.klass)})},
  807. args: [],
  808. source: "key\x0a\x09^ 'r'",
  809. messageSends: [],
  810. referencedClasses: []
  811. }),
  812. smalltalk.HLFindReferencesCommand.klass);
  813. smalltalk.addMethod(
  814. smalltalk.method({
  815. selector: "label",
  816. category: 'accessing',
  817. fn: function (){
  818. var self=this;
  819. return smalltalk.withContext(function($ctx1) {
  820. return "References";
  821. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLFindReferencesCommand.klass)})},
  822. args: [],
  823. source: "label\x0a\x09^ 'References'",
  824. messageSends: [],
  825. referencedClasses: []
  826. }),
  827. smalltalk.HLFindReferencesCommand.klass);
  828. smalltalk.addClass('HLMoveToCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  829. smalltalk.addMethod(
  830. smalltalk.method({
  831. selector: "key",
  832. category: 'accessing',
  833. fn: function (){
  834. var self=this;
  835. return smalltalk.withContext(function($ctx1) {
  836. return "m";
  837. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLMoveToCommand.klass)})},
  838. args: [],
  839. source: "key\x0a\x09^ 'm'",
  840. messageSends: [],
  841. referencedClasses: []
  842. }),
  843. smalltalk.HLMoveToCommand.klass);
  844. smalltalk.addMethod(
  845. smalltalk.method({
  846. selector: "label",
  847. category: 'accessing',
  848. fn: function (){
  849. var self=this;
  850. return smalltalk.withContext(function($ctx1) {
  851. return "Move";
  852. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMoveToCommand.klass)})},
  853. args: [],
  854. source: "label\x0a\x09^ 'Move'",
  855. messageSends: [],
  856. referencedClasses: []
  857. }),
  858. smalltalk.HLMoveToCommand.klass);
  859. smalltalk.addClass('HLMoveClassToCommand', smalltalk.HLMoveToCommand, [], 'Helios-Commands-Browser');
  860. smalltalk.addMethod(
  861. smalltalk.method({
  862. selector: "isActive",
  863. category: 'testing',
  864. fn: function (){
  865. var self=this;
  866. return smalltalk.withContext(function($ctx1) {
  867. var $1;
  868. $1=_st(_st(_st(self)._model())._selectedClass())._notNil();
  869. return $1;
  870. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLMoveClassToCommand)})},
  871. args: [],
  872. source: "isActive\x0a\x09^ self model selectedClass notNil",
  873. messageSends: ["notNil", "selectedClass", "model"],
  874. referencedClasses: []
  875. }),
  876. smalltalk.HLMoveClassToCommand);
  877. smalltalk.addMethod(
  878. smalltalk.method({
  879. selector: "key",
  880. category: 'accessing',
  881. fn: function (){
  882. var self=this;
  883. return smalltalk.withContext(function($ctx1) {
  884. return "c";
  885. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLMoveClassToCommand.klass)})},
  886. args: [],
  887. source: "key\x0a\x09^ 'c'",
  888. messageSends: [],
  889. referencedClasses: []
  890. }),
  891. smalltalk.HLMoveClassToCommand.klass);
  892. smalltalk.addMethod(
  893. smalltalk.method({
  894. selector: "label",
  895. category: 'accessing',
  896. fn: function (){
  897. var self=this;
  898. return smalltalk.withContext(function($ctx1) {
  899. return "Class";
  900. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMoveClassToCommand.klass)})},
  901. args: [],
  902. source: "label\x0a\x09^ 'Class'",
  903. messageSends: [],
  904. referencedClasses: []
  905. }),
  906. smalltalk.HLMoveClassToCommand.klass);
  907. smalltalk.addClass('HLMoveClassToPackageCommand', smalltalk.HLMoveClassToCommand, [], 'Helios-Commands-Browser');
  908. smalltalk.addMethod(
  909. smalltalk.method({
  910. selector: "category",
  911. category: 'accessing',
  912. fn: function (){
  913. var self=this;
  914. return smalltalk.withContext(function($ctx1) {
  915. return "Classes";
  916. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLMoveClassToPackageCommand)})},
  917. args: [],
  918. source: "category\x0a\x09^ 'Classes'",
  919. messageSends: [],
  920. referencedClasses: []
  921. }),
  922. smalltalk.HLMoveClassToPackageCommand);
  923. smalltalk.addMethod(
  924. smalltalk.method({
  925. selector: "displayLabel",
  926. category: 'accessing',
  927. fn: function (){
  928. var self=this;
  929. return smalltalk.withContext(function($ctx1) {
  930. return "select a package";
  931. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLMoveClassCommand)})},
  932. args: [],
  933. source: "displayLabel\x0a\x09^ 'select a package'",
  934. messageSends: [],
  935. referencedClasses: []
  936. }),
  937. smalltalk.HLMoveClassToPackageCommand);
  938. smalltalk.addMethod(
  939. smalltalk.method({
  940. selector: "execute",
  941. category: 'executing',
  942. fn: function (){
  943. var self=this;
  944. return smalltalk.withContext(function($ctx1) {
  945. _st(_st(self)._model())._moveClassToPackage_(_st(self)._input());
  946. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLMoveClassCommand)})},
  947. args: [],
  948. source: "execute\x0a\x09self model moveClassToPackage: self input",
  949. messageSends: ["moveClassToPackage:", "input", "model"],
  950. referencedClasses: []
  951. }),
  952. smalltalk.HLMoveClassToPackageCommand);
  953. smalltalk.addMethod(
  954. smalltalk.method({
  955. selector: "inputCompletion",
  956. category: 'accessing',
  957. fn: function (){
  958. var self=this;
  959. return smalltalk.withContext(function($ctx1) {
  960. var $1;
  961. $1=_st(_st(self)._model())._availablePackageNames();
  962. return $1;
  963. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},smalltalk.HLMoveClassCommand)})},
  964. args: [],
  965. source: "inputCompletion\x0a\x09^ self model availablePackageNames",
  966. messageSends: ["availablePackageNames", "model"],
  967. referencedClasses: []
  968. }),
  969. smalltalk.HLMoveClassToPackageCommand);
  970. smalltalk.addMethod(
  971. smalltalk.method({
  972. selector: "inputLabel",
  973. category: 'accessing',
  974. fn: function (){
  975. var self=this;
  976. return smalltalk.withContext(function($ctx1) {
  977. return "Move class to package:";
  978. }, function($ctx1) {$ctx1.fill(self,"inputLabel",{},smalltalk.HLMoveClassCommand)})},
  979. args: [],
  980. source: "inputLabel\x0a\x09^ 'Move class to package:'",
  981. messageSends: [],
  982. referencedClasses: []
  983. }),
  984. smalltalk.HLMoveClassToPackageCommand);
  985. smalltalk.addMethod(
  986. smalltalk.method({
  987. selector: "isInputRequired",
  988. category: 'testing',
  989. fn: function (){
  990. var self=this;
  991. return smalltalk.withContext(function($ctx1) {
  992. return true;
  993. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLMoveClassCommand)})},
  994. args: [],
  995. source: "isInputRequired\x0a\x09^ true",
  996. messageSends: [],
  997. referencedClasses: []
  998. }),
  999. smalltalk.HLMoveClassToPackageCommand);
  1000. smalltalk.addMethod(
  1001. smalltalk.method({
  1002. selector: "key",
  1003. category: 'accessing',
  1004. fn: function (){
  1005. var self=this;
  1006. return smalltalk.withContext(function($ctx1) {
  1007. return "p";
  1008. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLMoveClassCommand.klass)})},
  1009. args: [],
  1010. source: "key\x0a\x09^ 'p'",
  1011. messageSends: [],
  1012. referencedClasses: []
  1013. }),
  1014. smalltalk.HLMoveClassToPackageCommand.klass);
  1015. smalltalk.addMethod(
  1016. smalltalk.method({
  1017. selector: "label",
  1018. category: 'accessing',
  1019. fn: function (){
  1020. var self=this;
  1021. return smalltalk.withContext(function($ctx1) {
  1022. return "to package";
  1023. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMoveClassCommand.klass)})},
  1024. args: [],
  1025. source: "label\x0a\x09^ 'to package'",
  1026. messageSends: [],
  1027. referencedClasses: []
  1028. }),
  1029. smalltalk.HLMoveClassToPackageCommand.klass);
  1030. smalltalk.addMethod(
  1031. smalltalk.method({
  1032. selector: "menuLabel",
  1033. category: 'accessing',
  1034. fn: function (){
  1035. var self=this;
  1036. return smalltalk.withContext(function($ctx1) {
  1037. return "Move to package...";
  1038. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLMoveClassCommand.klass)})},
  1039. args: [],
  1040. source: "menuLabel\x09\x0a\x09^ 'Move to package...'",
  1041. messageSends: [],
  1042. referencedClasses: []
  1043. }),
  1044. smalltalk.HLMoveClassToPackageCommand.klass);
  1045. smalltalk.addClass('HLMoveMethodToCommand', smalltalk.HLMoveToCommand, [], 'Helios-Commands-Browser');
  1046. smalltalk.addMethod(
  1047. smalltalk.method({
  1048. selector: "category",
  1049. category: 'accessing',
  1050. fn: function (){
  1051. var self=this;
  1052. return smalltalk.withContext(function($ctx1) {
  1053. return "Methods";
  1054. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLMoveMethodToCommand)})},
  1055. args: [],
  1056. source: "category\x0a\x09^ 'Methods'",
  1057. messageSends: [],
  1058. referencedClasses: []
  1059. }),
  1060. smalltalk.HLMoveMethodToCommand);
  1061. smalltalk.addMethod(
  1062. smalltalk.method({
  1063. selector: "isActive",
  1064. category: 'testing',
  1065. fn: function (){
  1066. var self=this;
  1067. return smalltalk.withContext(function($ctx1) {
  1068. var $1;
  1069. $1=_st(_st(_st(self)._model())._selectedMethod())._notNil();
  1070. return $1;
  1071. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLMoveMethodToCommand)})},
  1072. args: [],
  1073. source: "isActive\x0a\x09^ self model selectedMethod notNil",
  1074. messageSends: ["notNil", "selectedMethod", "model"],
  1075. referencedClasses: []
  1076. }),
  1077. smalltalk.HLMoveMethodToCommand);
  1078. smalltalk.addMethod(
  1079. smalltalk.method({
  1080. selector: "key",
  1081. category: 'accessing',
  1082. fn: function (){
  1083. var self=this;
  1084. return smalltalk.withContext(function($ctx1) {
  1085. return "m";
  1086. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLMoveMethodToCommand.klass)})},
  1087. args: [],
  1088. source: "key\x0a\x09^ 'm'",
  1089. messageSends: [],
  1090. referencedClasses: []
  1091. }),
  1092. smalltalk.HLMoveMethodToCommand.klass);
  1093. smalltalk.addMethod(
  1094. smalltalk.method({
  1095. selector: "label",
  1096. category: 'accessing',
  1097. fn: function (){
  1098. var self=this;
  1099. return smalltalk.withContext(function($ctx1) {
  1100. return "Method";
  1101. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMoveMethodToCommand.klass)})},
  1102. args: [],
  1103. source: "label\x0a\x09^ 'Method'",
  1104. messageSends: [],
  1105. referencedClasses: []
  1106. }),
  1107. smalltalk.HLMoveMethodToCommand.klass);
  1108. smalltalk.addClass('HLMoveMethodToClassCommand', smalltalk.HLMoveMethodToCommand, [], 'Helios-Commands-Browser');
  1109. smalltalk.addMethod(
  1110. smalltalk.method({
  1111. selector: "displayLabel",
  1112. category: 'accessing',
  1113. fn: function (){
  1114. var self=this;
  1115. return smalltalk.withContext(function($ctx1) {
  1116. return "select a class";
  1117. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLMoveMethodToClassCommand)})},
  1118. args: [],
  1119. source: "displayLabel\x0a\x09^ 'select a class'",
  1120. messageSends: [],
  1121. referencedClasses: []
  1122. }),
  1123. smalltalk.HLMoveMethodToClassCommand);
  1124. smalltalk.addMethod(
  1125. smalltalk.method({
  1126. selector: "execute",
  1127. category: 'executing',
  1128. fn: function (){
  1129. var self=this;
  1130. return smalltalk.withContext(function($ctx1) {
  1131. _st(_st(self)._model())._moveMethodToClass_(_st(self)._input());
  1132. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLMoveMethodToClassCommand)})},
  1133. args: [],
  1134. source: "execute\x0a\x09self model moveMethodToClass: self input",
  1135. messageSends: ["moveMethodToClass:", "input", "model"],
  1136. referencedClasses: []
  1137. }),
  1138. smalltalk.HLMoveMethodToClassCommand);
  1139. smalltalk.addMethod(
  1140. smalltalk.method({
  1141. selector: "inputCompletion",
  1142. category: 'accessing',
  1143. fn: function (){
  1144. var self=this;
  1145. return smalltalk.withContext(function($ctx1) {
  1146. var $1;
  1147. $1=_st(_st(self)._model())._availableClassNames();
  1148. return $1;
  1149. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},smalltalk.HLMoveMethodToClassCommand)})},
  1150. args: [],
  1151. source: "inputCompletion\x0a\x09^ self model availableClassNames",
  1152. messageSends: ["availableClassNames", "model"],
  1153. referencedClasses: []
  1154. }),
  1155. smalltalk.HLMoveMethodToClassCommand);
  1156. smalltalk.addMethod(
  1157. smalltalk.method({
  1158. selector: "inputLabel",
  1159. category: 'accessing',
  1160. fn: function (){
  1161. var self=this;
  1162. return smalltalk.withContext(function($ctx1) {
  1163. return "Move method to class:";
  1164. }, function($ctx1) {$ctx1.fill(self,"inputLabel",{},smalltalk.HLMoveMethodToClassCommand)})},
  1165. args: [],
  1166. source: "inputLabel\x0a\x09^ 'Move method to class:'",
  1167. messageSends: [],
  1168. referencedClasses: []
  1169. }),
  1170. smalltalk.HLMoveMethodToClassCommand);
  1171. smalltalk.addMethod(
  1172. smalltalk.method({
  1173. selector: "isInputRequired",
  1174. category: 'testing',
  1175. fn: function (){
  1176. var self=this;
  1177. return smalltalk.withContext(function($ctx1) {
  1178. return true;
  1179. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLMoveMethodToClassCommand)})},
  1180. args: [],
  1181. source: "isInputRequired\x0a\x09^ true",
  1182. messageSends: [],
  1183. referencedClasses: []
  1184. }),
  1185. smalltalk.HLMoveMethodToClassCommand);
  1186. smalltalk.addMethod(
  1187. smalltalk.method({
  1188. selector: "key",
  1189. category: 'accessing',
  1190. fn: function (){
  1191. var self=this;
  1192. return smalltalk.withContext(function($ctx1) {
  1193. return "c";
  1194. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLMoveMethodToClassCommand.klass)})},
  1195. args: [],
  1196. source: "key\x0a\x09^ 'c'",
  1197. messageSends: [],
  1198. referencedClasses: []
  1199. }),
  1200. smalltalk.HLMoveMethodToClassCommand.klass);
  1201. smalltalk.addMethod(
  1202. smalltalk.method({
  1203. selector: "label",
  1204. category: 'accessing',
  1205. fn: function (){
  1206. var self=this;
  1207. return smalltalk.withContext(function($ctx1) {
  1208. return "to class";
  1209. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMoveMethodToClassCommand.klass)})},
  1210. args: [],
  1211. source: "label\x09\x0a\x09^ 'to class'",
  1212. messageSends: [],
  1213. referencedClasses: []
  1214. }),
  1215. smalltalk.HLMoveMethodToClassCommand.klass);
  1216. smalltalk.addMethod(
  1217. smalltalk.method({
  1218. selector: "menuLabel",
  1219. category: 'accessing',
  1220. fn: function (){
  1221. var self=this;
  1222. return smalltalk.withContext(function($ctx1) {
  1223. return "Move to class...";
  1224. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLMoveMethodToClassCommand.klass)})},
  1225. args: [],
  1226. source: "menuLabel\x09\x0a\x09^ 'Move to class...'",
  1227. messageSends: [],
  1228. referencedClasses: []
  1229. }),
  1230. smalltalk.HLMoveMethodToClassCommand.klass);
  1231. smalltalk.addClass('HLMoveMethodToProtocolCommand', smalltalk.HLMoveMethodToCommand, [], 'Helios-Commands-Browser');
  1232. smalltalk.addMethod(
  1233. smalltalk.method({
  1234. selector: "displayLabel",
  1235. category: 'accessing',
  1236. fn: function (){
  1237. var self=this;
  1238. return smalltalk.withContext(function($ctx1) {
  1239. return "select a protocol";
  1240. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLMoveMethodToProtocolCommand)})},
  1241. args: [],
  1242. source: "displayLabel\x0a\x09^ 'select a protocol'",
  1243. messageSends: [],
  1244. referencedClasses: []
  1245. }),
  1246. smalltalk.HLMoveMethodToProtocolCommand);
  1247. smalltalk.addMethod(
  1248. smalltalk.method({
  1249. selector: "execute",
  1250. category: 'executing',
  1251. fn: function (){
  1252. var self=this;
  1253. return smalltalk.withContext(function($ctx1) {
  1254. _st(_st(self)._model())._moveMethodToProtocol_(_st(self)._input());
  1255. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLMoveMethodToProtocolCommand)})},
  1256. args: [],
  1257. source: "execute\x0a\x09self model moveMethodToProtocol: self input",
  1258. messageSends: ["moveMethodToProtocol:", "input", "model"],
  1259. referencedClasses: []
  1260. }),
  1261. smalltalk.HLMoveMethodToProtocolCommand);
  1262. smalltalk.addMethod(
  1263. smalltalk.method({
  1264. selector: "inputCompletion",
  1265. category: 'accessing',
  1266. fn: function (){
  1267. var self=this;
  1268. return smalltalk.withContext(function($ctx1) {
  1269. var $1;
  1270. $1=_st(_st(self)._model())._availableProtocols();
  1271. return $1;
  1272. }, function($ctx1) {$ctx1.fill(self,"inputCompletion",{},smalltalk.HLMoveMethodToProtocolCommand)})},
  1273. args: [],
  1274. source: "inputCompletion\x0a\x09^ self model availableProtocols",
  1275. messageSends: ["availableProtocols", "model"],
  1276. referencedClasses: []
  1277. }),
  1278. smalltalk.HLMoveMethodToProtocolCommand);
  1279. smalltalk.addMethod(
  1280. smalltalk.method({
  1281. selector: "inputLabel",
  1282. category: 'accessing',
  1283. fn: function (){
  1284. var self=this;
  1285. return smalltalk.withContext(function($ctx1) {
  1286. return "Move method to a protocol:";
  1287. }, function($ctx1) {$ctx1.fill(self,"inputLabel",{},smalltalk.HLMoveMethodToProtocolCommand)})},
  1288. args: [],
  1289. source: "inputLabel\x0a\x09^ 'Move method to a protocol:'",
  1290. messageSends: [],
  1291. referencedClasses: []
  1292. }),
  1293. smalltalk.HLMoveMethodToProtocolCommand);
  1294. smalltalk.addMethod(
  1295. smalltalk.method({
  1296. selector: "isInputRequired",
  1297. category: 'testing',
  1298. fn: function (){
  1299. var self=this;
  1300. return smalltalk.withContext(function($ctx1) {
  1301. return true;
  1302. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLMoveMethodToProtocolCommand)})},
  1303. args: [],
  1304. source: "isInputRequired\x0a\x09^ true",
  1305. messageSends: [],
  1306. referencedClasses: []
  1307. }),
  1308. smalltalk.HLMoveMethodToProtocolCommand);
  1309. smalltalk.addMethod(
  1310. smalltalk.method({
  1311. selector: "key",
  1312. category: 'accessing',
  1313. fn: function (){
  1314. var self=this;
  1315. return smalltalk.withContext(function($ctx1) {
  1316. return "t";
  1317. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLMoveMethodToProtocolCommand.klass)})},
  1318. args: [],
  1319. source: "key\x0a\x09^ 't'",
  1320. messageSends: [],
  1321. referencedClasses: []
  1322. }),
  1323. smalltalk.HLMoveMethodToProtocolCommand.klass);
  1324. smalltalk.addMethod(
  1325. smalltalk.method({
  1326. selector: "label",
  1327. category: 'accessing',
  1328. fn: function (){
  1329. var self=this;
  1330. return smalltalk.withContext(function($ctx1) {
  1331. return "to protocol";
  1332. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLMoveMethodToProtocolCommand.klass)})},
  1333. args: [],
  1334. source: "label\x0a\x09^ 'to protocol'",
  1335. messageSends: [],
  1336. referencedClasses: []
  1337. }),
  1338. smalltalk.HLMoveMethodToProtocolCommand.klass);
  1339. smalltalk.addMethod(
  1340. smalltalk.method({
  1341. selector: "menuLabel",
  1342. category: 'accessing',
  1343. fn: function (){
  1344. var self=this;
  1345. return smalltalk.withContext(function($ctx1) {
  1346. return "Move to protocol...";
  1347. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLMoveMethodToProtocolCommand.klass)})},
  1348. args: [],
  1349. source: "menuLabel\x0a\x09^ 'Move to protocol...'",
  1350. messageSends: [],
  1351. referencedClasses: []
  1352. }),
  1353. smalltalk.HLMoveMethodToProtocolCommand.klass);
  1354. smalltalk.addClass('HLRemoveCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  1355. smalltalk.addMethod(
  1356. smalltalk.method({
  1357. selector: "key",
  1358. category: 'accessing',
  1359. fn: function (){
  1360. var self=this;
  1361. return smalltalk.withContext(function($ctx1) {
  1362. return "x";
  1363. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRemoveCommand.klass)})},
  1364. args: [],
  1365. source: "key\x0a\x09^ 'x'",
  1366. messageSends: [],
  1367. referencedClasses: []
  1368. }),
  1369. smalltalk.HLRemoveCommand.klass);
  1370. smalltalk.addMethod(
  1371. smalltalk.method({
  1372. selector: "label",
  1373. category: 'accessing',
  1374. fn: function (){
  1375. var self=this;
  1376. return smalltalk.withContext(function($ctx1) {
  1377. return "Remove";
  1378. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRemoveCommand.klass)})},
  1379. args: [],
  1380. source: "label\x0a\x09^ 'Remove'",
  1381. messageSends: [],
  1382. referencedClasses: []
  1383. }),
  1384. smalltalk.HLRemoveCommand.klass);
  1385. smalltalk.addClass('HLRemoveClassCommand', smalltalk.HLRemoveCommand, [], 'Helios-Commands-Browser');
  1386. smalltalk.addMethod(
  1387. smalltalk.method({
  1388. selector: "category",
  1389. category: 'accessing',
  1390. fn: function (){
  1391. var self=this;
  1392. return smalltalk.withContext(function($ctx1) {
  1393. return "Classes";
  1394. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLRemoveClassCommand)})},
  1395. args: [],
  1396. source: "category\x0a\x09^ 'Classes'",
  1397. messageSends: [],
  1398. referencedClasses: []
  1399. }),
  1400. smalltalk.HLRemoveClassCommand);
  1401. smalltalk.addMethod(
  1402. smalltalk.method({
  1403. selector: "execute",
  1404. category: 'executing',
  1405. fn: function (){
  1406. var self=this;
  1407. return smalltalk.withContext(function($ctx1) {
  1408. _st(_st(self)._model())._removeClass();
  1409. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLRemoveClassCommand)})},
  1410. args: [],
  1411. source: "execute\x0a\x09self model removeClass",
  1412. messageSends: ["removeClass", "model"],
  1413. referencedClasses: []
  1414. }),
  1415. smalltalk.HLRemoveClassCommand);
  1416. smalltalk.addMethod(
  1417. smalltalk.method({
  1418. selector: "isActive",
  1419. category: 'testing',
  1420. fn: function (){
  1421. var self=this;
  1422. return smalltalk.withContext(function($ctx1) {
  1423. var $1;
  1424. $1=_st(_st(_st(self)._model())._selectedClass())._notNil();
  1425. return $1;
  1426. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLRemoveClassCommand)})},
  1427. args: [],
  1428. source: "isActive\x0a\x09^ self model selectedClass notNil",
  1429. messageSends: ["notNil", "selectedClass", "model"],
  1430. referencedClasses: []
  1431. }),
  1432. smalltalk.HLRemoveClassCommand);
  1433. smalltalk.addMethod(
  1434. smalltalk.method({
  1435. selector: "key",
  1436. category: 'accessing',
  1437. fn: function (){
  1438. var self=this;
  1439. return smalltalk.withContext(function($ctx1) {
  1440. return "c";
  1441. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRemoveClassCommand.klass)})},
  1442. args: [],
  1443. source: "key\x0a\x09^ 'c'",
  1444. messageSends: [],
  1445. referencedClasses: []
  1446. }),
  1447. smalltalk.HLRemoveClassCommand.klass);
  1448. smalltalk.addMethod(
  1449. smalltalk.method({
  1450. selector: "label",
  1451. category: 'accessing',
  1452. fn: function (){
  1453. var self=this;
  1454. return smalltalk.withContext(function($ctx1) {
  1455. return "Class";
  1456. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRemoveClassCommand.klass)})},
  1457. args: [],
  1458. source: "label\x0a\x09^ 'Class'",
  1459. messageSends: [],
  1460. referencedClasses: []
  1461. }),
  1462. smalltalk.HLRemoveClassCommand.klass);
  1463. smalltalk.addMethod(
  1464. smalltalk.method({
  1465. selector: "menuLabel",
  1466. category: 'accessing',
  1467. fn: function (){
  1468. var self=this;
  1469. return smalltalk.withContext(function($ctx1) {
  1470. return "Remove class";
  1471. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLRemoveClassCommand.klass)})},
  1472. args: [],
  1473. source: "menuLabel\x0a\x09^ 'Remove class'",
  1474. messageSends: [],
  1475. referencedClasses: []
  1476. }),
  1477. smalltalk.HLRemoveClassCommand.klass);
  1478. smalltalk.addClass('HLRemoveMethodCommand', smalltalk.HLRemoveCommand, [], 'Helios-Commands-Browser');
  1479. smalltalk.addMethod(
  1480. smalltalk.method({
  1481. selector: "category",
  1482. category: 'accessing',
  1483. fn: function (){
  1484. var self=this;
  1485. return smalltalk.withContext(function($ctx1) {
  1486. return "Methods";
  1487. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLRemoveMethodCommand)})},
  1488. args: [],
  1489. source: "category\x0a\x09^ 'Methods'",
  1490. messageSends: [],
  1491. referencedClasses: []
  1492. }),
  1493. smalltalk.HLRemoveMethodCommand);
  1494. smalltalk.addMethod(
  1495. smalltalk.method({
  1496. selector: "execute",
  1497. category: 'executing',
  1498. fn: function (){
  1499. var self=this;
  1500. return smalltalk.withContext(function($ctx1) {
  1501. _st(_st(self)._model())._removeMethod();
  1502. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLRemoveMethodCommand)})},
  1503. args: [],
  1504. source: "execute\x0a\x09self model removeMethod",
  1505. messageSends: ["removeMethod", "model"],
  1506. referencedClasses: []
  1507. }),
  1508. smalltalk.HLRemoveMethodCommand);
  1509. smalltalk.addMethod(
  1510. smalltalk.method({
  1511. selector: "isActive",
  1512. category: 'testing',
  1513. fn: function (){
  1514. var self=this;
  1515. return smalltalk.withContext(function($ctx1) {
  1516. var $1;
  1517. $1=_st(_st(_st(self)._model())._selectedMethod())._notNil();
  1518. return $1;
  1519. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLRemoveMethodCommand)})},
  1520. args: [],
  1521. source: "isActive\x0a\x09^ self model selectedMethod notNil",
  1522. messageSends: ["notNil", "selectedMethod", "model"],
  1523. referencedClasses: []
  1524. }),
  1525. smalltalk.HLRemoveMethodCommand);
  1526. smalltalk.addMethod(
  1527. smalltalk.method({
  1528. selector: "key",
  1529. category: 'accessing',
  1530. fn: function (){
  1531. var self=this;
  1532. return smalltalk.withContext(function($ctx1) {
  1533. return "m";
  1534. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRemoveMethodCommand.klass)})},
  1535. args: [],
  1536. source: "key\x0a\x09^ 'm'",
  1537. messageSends: [],
  1538. referencedClasses: []
  1539. }),
  1540. smalltalk.HLRemoveMethodCommand.klass);
  1541. smalltalk.addMethod(
  1542. smalltalk.method({
  1543. selector: "label",
  1544. category: 'accessing',
  1545. fn: function (){
  1546. var self=this;
  1547. return smalltalk.withContext(function($ctx1) {
  1548. return "Method";
  1549. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRemoveMethodCommand.klass)})},
  1550. args: [],
  1551. source: "label\x0a\x09^ 'Method'",
  1552. messageSends: [],
  1553. referencedClasses: []
  1554. }),
  1555. smalltalk.HLRemoveMethodCommand.klass);
  1556. smalltalk.addMethod(
  1557. smalltalk.method({
  1558. selector: "menuLabel",
  1559. category: 'accessing',
  1560. fn: function (){
  1561. var self=this;
  1562. return smalltalk.withContext(function($ctx1) {
  1563. return "Remove method";
  1564. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLRemoveMethodCommand.klass)})},
  1565. args: [],
  1566. source: "menuLabel\x0a\x09^ 'Remove method'",
  1567. messageSends: [],
  1568. referencedClasses: []
  1569. }),
  1570. smalltalk.HLRemoveMethodCommand.klass);
  1571. smalltalk.addClass('HLRemoveProtocolCommand', smalltalk.HLRemoveCommand, [], 'Helios-Commands-Browser');
  1572. smalltalk.addMethod(
  1573. smalltalk.method({
  1574. selector: "category",
  1575. category: 'accessing',
  1576. fn: function (){
  1577. var self=this;
  1578. return smalltalk.withContext(function($ctx1) {
  1579. return "Protocols";
  1580. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLRemoveProtocolCommand)})},
  1581. args: [],
  1582. source: "category\x0a\x09^ 'Protocols'",
  1583. messageSends: [],
  1584. referencedClasses: []
  1585. }),
  1586. smalltalk.HLRemoveProtocolCommand);
  1587. smalltalk.addMethod(
  1588. smalltalk.method({
  1589. selector: "execute",
  1590. category: 'executing',
  1591. fn: function (){
  1592. var self=this;
  1593. return smalltalk.withContext(function($ctx1) {
  1594. _st(_st(self)._model())._removeProtocol();
  1595. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLRemoveProtocolCommand)})},
  1596. args: [],
  1597. source: "execute\x0a\x09self model removeProtocol",
  1598. messageSends: ["removeProtocol", "model"],
  1599. referencedClasses: []
  1600. }),
  1601. smalltalk.HLRemoveProtocolCommand);
  1602. smalltalk.addMethod(
  1603. smalltalk.method({
  1604. selector: "isActive",
  1605. category: 'testing',
  1606. fn: function (){
  1607. var self=this;
  1608. return smalltalk.withContext(function($ctx1) {
  1609. var $1;
  1610. $1=_st(_st(_st(self)._model())._selectedProtocol())._notNil();
  1611. return $1;
  1612. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLRemoveProtocolCommand)})},
  1613. args: [],
  1614. source: "isActive\x0a\x09^ self model selectedProtocol notNil",
  1615. messageSends: ["notNil", "selectedProtocol", "model"],
  1616. referencedClasses: []
  1617. }),
  1618. smalltalk.HLRemoveProtocolCommand);
  1619. smalltalk.addMethod(
  1620. smalltalk.method({
  1621. selector: "key",
  1622. category: 'accessing',
  1623. fn: function (){
  1624. var self=this;
  1625. return smalltalk.withContext(function($ctx1) {
  1626. return "t";
  1627. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRemoveProtocolCommand.klass)})},
  1628. args: [],
  1629. source: "key\x0a\x09^ 't'",
  1630. messageSends: [],
  1631. referencedClasses: []
  1632. }),
  1633. smalltalk.HLRemoveProtocolCommand.klass);
  1634. smalltalk.addMethod(
  1635. smalltalk.method({
  1636. selector: "label",
  1637. category: 'accessing',
  1638. fn: function (){
  1639. var self=this;
  1640. return smalltalk.withContext(function($ctx1) {
  1641. return "Protocol";
  1642. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRemoveProtocolCommand.klass)})},
  1643. args: [],
  1644. source: "label\x0a\x09^ 'Protocol'",
  1645. messageSends: [],
  1646. referencedClasses: []
  1647. }),
  1648. smalltalk.HLRemoveProtocolCommand.klass);
  1649. smalltalk.addMethod(
  1650. smalltalk.method({
  1651. selector: "menuLabel",
  1652. category: 'accessing',
  1653. fn: function (){
  1654. var self=this;
  1655. return smalltalk.withContext(function($ctx1) {
  1656. return "Remove protocol";
  1657. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLRemoveProtocolCommand.klass)})},
  1658. args: [],
  1659. source: "menuLabel\x0a\x09^ 'Remove protocol'",
  1660. messageSends: [],
  1661. referencedClasses: []
  1662. }),
  1663. smalltalk.HLRemoveProtocolCommand.klass);
  1664. smalltalk.addClass('HLRenameCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  1665. smalltalk.addMethod(
  1666. smalltalk.method({
  1667. selector: "key",
  1668. category: 'accessing',
  1669. fn: function (){
  1670. var self=this;
  1671. return smalltalk.withContext(function($ctx1) {
  1672. return "r";
  1673. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRenameCommand.klass)})},
  1674. args: [],
  1675. source: "key\x0a\x09^ 'r'",
  1676. messageSends: [],
  1677. referencedClasses: []
  1678. }),
  1679. smalltalk.HLRenameCommand.klass);
  1680. smalltalk.addMethod(
  1681. smalltalk.method({
  1682. selector: "label",
  1683. category: 'accessing',
  1684. fn: function (){
  1685. var self=this;
  1686. return smalltalk.withContext(function($ctx1) {
  1687. return "Rename";
  1688. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRenameCommand.klass)})},
  1689. args: [],
  1690. source: "label\x0a\x09^ 'Rename'",
  1691. messageSends: [],
  1692. referencedClasses: []
  1693. }),
  1694. smalltalk.HLRenameCommand.klass);
  1695. smalltalk.addClass('HLRenameClassCommand', smalltalk.HLRenameCommand, [], 'Helios-Commands-Browser');
  1696. smalltalk.addMethod(
  1697. smalltalk.method({
  1698. selector: "category",
  1699. category: 'accessing',
  1700. fn: function (){
  1701. var self=this;
  1702. return smalltalk.withContext(function($ctx1) {
  1703. return "Classes";
  1704. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLRenameClassCommand)})},
  1705. args: [],
  1706. source: "category\x0a\x09^ 'Classes'",
  1707. messageSends: [],
  1708. referencedClasses: []
  1709. }),
  1710. smalltalk.HLRenameClassCommand);
  1711. smalltalk.addMethod(
  1712. smalltalk.method({
  1713. selector: "defaultInput",
  1714. category: 'defaults',
  1715. fn: function (){
  1716. var self=this;
  1717. return smalltalk.withContext(function($ctx1) {
  1718. var $1;
  1719. $1=_st(_st(_st(self)._model())._selectedClass())._name();
  1720. return $1;
  1721. }, function($ctx1) {$ctx1.fill(self,"defaultInput",{},smalltalk.HLRenameClassCommand)})},
  1722. args: [],
  1723. source: "defaultInput\x0a\x09^ self model selectedClass name",
  1724. messageSends: ["name", "selectedClass", "model"],
  1725. referencedClasses: []
  1726. }),
  1727. smalltalk.HLRenameClassCommand);
  1728. smalltalk.addMethod(
  1729. smalltalk.method({
  1730. selector: "displayLabel",
  1731. category: 'accessing',
  1732. fn: function (){
  1733. var self=this;
  1734. return smalltalk.withContext(function($ctx1) {
  1735. return "Rename class to:";
  1736. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLRenameClassCommand)})},
  1737. args: [],
  1738. source: "displayLabel\x0a\x09^ 'Rename class to:'",
  1739. messageSends: [],
  1740. referencedClasses: []
  1741. }),
  1742. smalltalk.HLRenameClassCommand);
  1743. smalltalk.addMethod(
  1744. smalltalk.method({
  1745. selector: "execute",
  1746. category: 'executing',
  1747. fn: function (){
  1748. var self=this;
  1749. return smalltalk.withContext(function($ctx1) {
  1750. _st(_st(self)._model())._renameClassTo_(_st(self)._input());
  1751. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLRenameClassCommand)})},
  1752. args: [],
  1753. source: "execute\x0a\x09self model renameClassTo: self input",
  1754. messageSends: ["renameClassTo:", "input", "model"],
  1755. referencedClasses: []
  1756. }),
  1757. smalltalk.HLRenameClassCommand);
  1758. smalltalk.addMethod(
  1759. smalltalk.method({
  1760. selector: "isActive",
  1761. category: 'testing',
  1762. fn: function (){
  1763. var self=this;
  1764. return smalltalk.withContext(function($ctx1) {
  1765. var $1;
  1766. $1=_st(_st(_st(self)._model())._selectedClass())._notNil();
  1767. return $1;
  1768. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLRenameClassCommand)})},
  1769. args: [],
  1770. source: "isActive\x0a\x09^ self model selectedClass notNil",
  1771. messageSends: ["notNil", "selectedClass", "model"],
  1772. referencedClasses: []
  1773. }),
  1774. smalltalk.HLRenameClassCommand);
  1775. smalltalk.addMethod(
  1776. smalltalk.method({
  1777. selector: "isInputRequired",
  1778. category: 'testing',
  1779. fn: function (){
  1780. var self=this;
  1781. return smalltalk.withContext(function($ctx1) {
  1782. return true;
  1783. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLRenameClassCommand)})},
  1784. args: [],
  1785. source: "isInputRequired\x0a\x09^ true",
  1786. messageSends: [],
  1787. referencedClasses: []
  1788. }),
  1789. smalltalk.HLRenameClassCommand);
  1790. smalltalk.addMethod(
  1791. smalltalk.method({
  1792. selector: "key",
  1793. category: 'accessing',
  1794. fn: function (){
  1795. var self=this;
  1796. return smalltalk.withContext(function($ctx1) {
  1797. return "c";
  1798. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRenameClassCommand.klass)})},
  1799. args: [],
  1800. source: "key\x0a\x09^ 'c'",
  1801. messageSends: [],
  1802. referencedClasses: []
  1803. }),
  1804. smalltalk.HLRenameClassCommand.klass);
  1805. smalltalk.addMethod(
  1806. smalltalk.method({
  1807. selector: "label",
  1808. category: 'accessing',
  1809. fn: function (){
  1810. var self=this;
  1811. return smalltalk.withContext(function($ctx1) {
  1812. return "Class";
  1813. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRenameClassCommand.klass)})},
  1814. args: [],
  1815. source: "label\x0a\x09^ 'Class'",
  1816. messageSends: [],
  1817. referencedClasses: []
  1818. }),
  1819. smalltalk.HLRenameClassCommand.klass);
  1820. smalltalk.addMethod(
  1821. smalltalk.method({
  1822. selector: "menuLabel",
  1823. category: 'accessing',
  1824. fn: function (){
  1825. var self=this;
  1826. return smalltalk.withContext(function($ctx1) {
  1827. return "Rename class...";
  1828. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLRenameClassCommand.klass)})},
  1829. args: [],
  1830. source: "menuLabel\x0a\x09^ 'Rename class...'",
  1831. messageSends: [],
  1832. referencedClasses: []
  1833. }),
  1834. smalltalk.HLRenameClassCommand.klass);
  1835. smalltalk.addClass('HLRenameProtocolCommand', smalltalk.HLRenameCommand, [], 'Helios-Commands-Browser');
  1836. smalltalk.addMethod(
  1837. smalltalk.method({
  1838. selector: "category",
  1839. category: 'accessing',
  1840. fn: function (){
  1841. var self=this;
  1842. return smalltalk.withContext(function($ctx1) {
  1843. return "Protocols";
  1844. }, function($ctx1) {$ctx1.fill(self,"category",{},smalltalk.HLRenameProtocolCommand)})},
  1845. args: [],
  1846. source: "category\x0a\x09^ 'Protocols'",
  1847. messageSends: [],
  1848. referencedClasses: []
  1849. }),
  1850. smalltalk.HLRenameProtocolCommand);
  1851. smalltalk.addMethod(
  1852. smalltalk.method({
  1853. selector: "defaultInput",
  1854. category: 'defaults',
  1855. fn: function (){
  1856. var self=this;
  1857. return smalltalk.withContext(function($ctx1) {
  1858. var $1;
  1859. $1=_st(_st(self)._model())._selectedProtocol();
  1860. return $1;
  1861. }, function($ctx1) {$ctx1.fill(self,"defaultInput",{},smalltalk.HLRenameProtocolCommand)})},
  1862. args: [],
  1863. source: "defaultInput\x0a\x09^ self model selectedProtocol",
  1864. messageSends: ["selectedProtocol", "model"],
  1865. referencedClasses: []
  1866. }),
  1867. smalltalk.HLRenameProtocolCommand);
  1868. smalltalk.addMethod(
  1869. smalltalk.method({
  1870. selector: "displayLabel",
  1871. category: 'accessing',
  1872. fn: function (){
  1873. var self=this;
  1874. return smalltalk.withContext(function($ctx1) {
  1875. return "Rename protocol to:";
  1876. }, function($ctx1) {$ctx1.fill(self,"displayLabel",{},smalltalk.HLRenameProtocolCommand)})},
  1877. args: [],
  1878. source: "displayLabel\x0a\x09^ 'Rename protocol to:'",
  1879. messageSends: [],
  1880. referencedClasses: []
  1881. }),
  1882. smalltalk.HLRenameProtocolCommand);
  1883. smalltalk.addMethod(
  1884. smalltalk.method({
  1885. selector: "execute",
  1886. category: 'executing',
  1887. fn: function (){
  1888. var self=this;
  1889. return smalltalk.withContext(function($ctx1) {
  1890. _st(_st(self)._model())._renameProtocolTo_(_st(self)._input());
  1891. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLRenameProtocolCommand)})},
  1892. args: [],
  1893. source: "execute\x0a\x09self model renameProtocolTo: self input",
  1894. messageSends: ["renameProtocolTo:", "input", "model"],
  1895. referencedClasses: []
  1896. }),
  1897. smalltalk.HLRenameProtocolCommand);
  1898. smalltalk.addMethod(
  1899. smalltalk.method({
  1900. selector: "isActive",
  1901. category: 'testing',
  1902. fn: function (){
  1903. var self=this;
  1904. return smalltalk.withContext(function($ctx1) {
  1905. var $1;
  1906. $1=_st(_st(_st(self)._model())._selectedProtocol())._notNil();
  1907. return $1;
  1908. }, function($ctx1) {$ctx1.fill(self,"isActive",{},smalltalk.HLRenameProtocolCommand)})},
  1909. args: [],
  1910. source: "isActive\x0a\x09^ self model selectedProtocol notNil",
  1911. messageSends: ["notNil", "selectedProtocol", "model"],
  1912. referencedClasses: []
  1913. }),
  1914. smalltalk.HLRenameProtocolCommand);
  1915. smalltalk.addMethod(
  1916. smalltalk.method({
  1917. selector: "isInputRequired",
  1918. category: 'testing',
  1919. fn: function (){
  1920. var self=this;
  1921. return smalltalk.withContext(function($ctx1) {
  1922. return true;
  1923. }, function($ctx1) {$ctx1.fill(self,"isInputRequired",{},smalltalk.HLRenameProtocolCommand)})},
  1924. args: [],
  1925. source: "isInputRequired\x0a\x09^ true",
  1926. messageSends: [],
  1927. referencedClasses: []
  1928. }),
  1929. smalltalk.HLRenameProtocolCommand);
  1930. smalltalk.addMethod(
  1931. smalltalk.method({
  1932. selector: "key",
  1933. category: 'accessing',
  1934. fn: function (){
  1935. var self=this;
  1936. return smalltalk.withContext(function($ctx1) {
  1937. return "t";
  1938. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLRenameProtocolCommand.klass)})},
  1939. args: [],
  1940. source: "key\x0a\x09^ 't'",
  1941. messageSends: [],
  1942. referencedClasses: []
  1943. }),
  1944. smalltalk.HLRenameProtocolCommand.klass);
  1945. smalltalk.addMethod(
  1946. smalltalk.method({
  1947. selector: "label",
  1948. category: 'accessing',
  1949. fn: function (){
  1950. var self=this;
  1951. return smalltalk.withContext(function($ctx1) {
  1952. return "Protocol";
  1953. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLRenameProtocolCommand.klass)})},
  1954. args: [],
  1955. source: "label\x0a\x09^ 'Protocol'",
  1956. messageSends: [],
  1957. referencedClasses: []
  1958. }),
  1959. smalltalk.HLRenameProtocolCommand.klass);
  1960. smalltalk.addMethod(
  1961. smalltalk.method({
  1962. selector: "menuLabel",
  1963. category: 'accessing',
  1964. fn: function (){
  1965. var self=this;
  1966. return smalltalk.withContext(function($ctx1) {
  1967. return "Rename protocol...";
  1968. }, function($ctx1) {$ctx1.fill(self,"menuLabel",{},smalltalk.HLRenameProtocolCommand.klass)})},
  1969. args: [],
  1970. source: "menuLabel\x0a\x09^ 'Rename protocol...'",
  1971. messageSends: [],
  1972. referencedClasses: []
  1973. }),
  1974. smalltalk.HLRenameProtocolCommand.klass);
  1975. smalltalk.addClass('HLToggleCommand', smalltalk.HLBrowserCommand, [], 'Helios-Commands-Browser');
  1976. smalltalk.addMethod(
  1977. smalltalk.method({
  1978. selector: "key",
  1979. category: 'accessing',
  1980. fn: function (){
  1981. var self=this;
  1982. return smalltalk.withContext(function($ctx1) {
  1983. return "t";
  1984. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLToggleCommand.klass)})},
  1985. args: [],
  1986. source: "key\x0a\x09^ 't'",
  1987. messageSends: [],
  1988. referencedClasses: []
  1989. }),
  1990. smalltalk.HLToggleCommand.klass);
  1991. smalltalk.addMethod(
  1992. smalltalk.method({
  1993. selector: "label",
  1994. category: 'accessing',
  1995. fn: function (){
  1996. var self=this;
  1997. return smalltalk.withContext(function($ctx1) {
  1998. return "Toggle";
  1999. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLToggleCommand.klass)})},
  2000. args: [],
  2001. source: "label\x0a\x09^ 'Toggle'",
  2002. messageSends: [],
  2003. referencedClasses: []
  2004. }),
  2005. smalltalk.HLToggleCommand.klass);
  2006. smalltalk.addClass('HLToggleClassCommentCommand', smalltalk.HLToggleCommand, [], 'Helios-Commands-Browser');
  2007. smalltalk.addMethod(
  2008. smalltalk.method({
  2009. selector: "execute",
  2010. category: 'executing',
  2011. fn: function (){
  2012. var self=this;
  2013. return smalltalk.withContext(function($ctx1) {
  2014. _st(_st(self)._model())._showComment_(true);
  2015. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLToggleClassCommentCommand)})},
  2016. args: [],
  2017. source: "execute\x0a\x09self model showComment: true",
  2018. messageSends: ["showComment:", "model"],
  2019. referencedClasses: []
  2020. }),
  2021. smalltalk.HLToggleClassCommentCommand);
  2022. smalltalk.addMethod(
  2023. smalltalk.method({
  2024. selector: "key",
  2025. category: 'accessing',
  2026. fn: function (){
  2027. var self=this;
  2028. return smalltalk.withContext(function($ctx1) {
  2029. return "d";
  2030. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLToggleClassCommentCommand.klass)})},
  2031. args: [],
  2032. source: "key\x0a\x09^ 'd'",
  2033. messageSends: [],
  2034. referencedClasses: []
  2035. }),
  2036. smalltalk.HLToggleClassCommentCommand.klass);
  2037. smalltalk.addMethod(
  2038. smalltalk.method({
  2039. selector: "label",
  2040. category: 'accessing',
  2041. fn: function (){
  2042. var self=this;
  2043. return smalltalk.withContext(function($ctx1) {
  2044. return "Documentation";
  2045. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLToggleClassCommentCommand.klass)})},
  2046. args: [],
  2047. source: "label\x0a\x09^ 'Documentation'",
  2048. messageSends: [],
  2049. referencedClasses: []
  2050. }),
  2051. smalltalk.HLToggleClassCommentCommand.klass);
  2052. smalltalk.addClass('HLToggleClassSideCommand', smalltalk.HLToggleCommand, [], 'Helios-Commands-Browser');
  2053. smalltalk.addMethod(
  2054. smalltalk.method({
  2055. selector: "execute",
  2056. category: 'executing',
  2057. fn: function (){
  2058. var self=this;
  2059. return smalltalk.withContext(function($ctx1) {
  2060. _st(_st(self)._model())._showInstance_(false);
  2061. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLToggleClassSideCommand)})},
  2062. args: [],
  2063. source: "execute\x0a\x09self model showInstance: false",
  2064. messageSends: ["showInstance:", "model"],
  2065. referencedClasses: []
  2066. }),
  2067. smalltalk.HLToggleClassSideCommand);
  2068. smalltalk.addMethod(
  2069. smalltalk.method({
  2070. selector: "key",
  2071. category: 'accessing',
  2072. fn: function (){
  2073. var self=this;
  2074. return smalltalk.withContext(function($ctx1) {
  2075. return "c";
  2076. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLToggleClassSideCommand.klass)})},
  2077. args: [],
  2078. source: "key\x0a\x09^ 'c'",
  2079. messageSends: [],
  2080. referencedClasses: []
  2081. }),
  2082. smalltalk.HLToggleClassSideCommand.klass);
  2083. smalltalk.addMethod(
  2084. smalltalk.method({
  2085. selector: "label",
  2086. category: 'accessing',
  2087. fn: function (){
  2088. var self=this;
  2089. return smalltalk.withContext(function($ctx1) {
  2090. return "Class side";
  2091. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLToggleClassSideCommand.klass)})},
  2092. args: [],
  2093. source: "label\x0a\x09^ 'Class side'",
  2094. messageSends: [],
  2095. referencedClasses: []
  2096. }),
  2097. smalltalk.HLToggleClassSideCommand.klass);
  2098. smalltalk.addClass('HLToggleInstanceSideCommand', smalltalk.HLToggleCommand, [], 'Helios-Commands-Browser');
  2099. smalltalk.addMethod(
  2100. smalltalk.method({
  2101. selector: "execute",
  2102. category: 'executing',
  2103. fn: function (){
  2104. var self=this;
  2105. return smalltalk.withContext(function($ctx1) {
  2106. _st(_st(self)._model())._showInstance_(true);
  2107. return self}, function($ctx1) {$ctx1.fill(self,"execute",{},smalltalk.HLToggleInstanceSideCommand)})},
  2108. args: [],
  2109. source: "execute\x0a\x09self model showInstance: true",
  2110. messageSends: ["showInstance:", "model"],
  2111. referencedClasses: []
  2112. }),
  2113. smalltalk.HLToggleInstanceSideCommand);
  2114. smalltalk.addMethod(
  2115. smalltalk.method({
  2116. selector: "key",
  2117. category: 'accessing',
  2118. fn: function (){
  2119. var self=this;
  2120. return smalltalk.withContext(function($ctx1) {
  2121. return "i";
  2122. }, function($ctx1) {$ctx1.fill(self,"key",{},smalltalk.HLToggleInstanceSideCommand.klass)})},
  2123. args: [],
  2124. source: "key\x0a\x09^ 'i'",
  2125. messageSends: [],
  2126. referencedClasses: []
  2127. }),
  2128. smalltalk.HLToggleInstanceSideCommand.klass);
  2129. smalltalk.addMethod(
  2130. smalltalk.method({
  2131. selector: "label",
  2132. category: 'accessing',
  2133. fn: function (){
  2134. var self=this;
  2135. return smalltalk.withContext(function($ctx1) {
  2136. return "Instance side";
  2137. }, function($ctx1) {$ctx1.fill(self,"label",{},smalltalk.HLToggleInstanceSideCommand.klass)})},
  2138. args: [],
  2139. source: "label\x0a\x09^ 'Instance side'",
  2140. messageSends: [],
  2141. referencedClasses: []
  2142. }),
  2143. smalltalk.HLToggleInstanceSideCommand.klass);