123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215 |
- define("helios/Helios-Helpers", ["amber_vm/smalltalk", "amber_vm/nil", "amber_vm/_st", "amber_vm/globals", "amber_core/Kernel-Objects"], function(smalltalk,nil,_st, globals){
- smalltalk.addPackage('Helios-Helpers');
- smalltalk.packages["Helios-Helpers"].transport = {"type":"amd","amdNamespace":"helios"};
- smalltalk.addClass('HLClassifier', globals.Object, ['next', 'method'], 'Helios-Helpers');
- globals.HLClassifier.comment="I am an abstract class implementing a link in a `chain of responsibility` pattern.\x0a\x0aSubclasses are in charge of classifying a method according to multiple strategies.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classify",
- protocol: 'protocol',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$2,$receiver;
- $1=self._next();
- $ctx1.sendIdx["next"]=1;
- if(($receiver = $1) == nil || $receiver == null){
- return false;
- } else {
- $1;
- };
- $3=self._doClassify();
- if(smalltalk.assert($3)){
- $2=true;
- } else {
- $2=_st(self._next())._classify();
- };
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"classify",{},globals.HLClassifier)})},
- args: [],
- source: "classify\x0a\x09self next ifNil: [ ^ false ].\x0a\x09\x0a\x09^ self doClassify\x0a\x09\x09ifTrue: [ true ]\x0a\x09\x09ifFalse: [ self next classify ]",
- messageSends: ["ifNil:", "next", "ifTrue:ifFalse:", "doClassify", "classify"],
- referencedClasses: []
- }),
- globals.HLClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "doClassify",
- protocol: 'private',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self._subclassResponsibility();
- return self}, function($ctx1) {$ctx1.fill(self,"doClassify",{},globals.HLClassifier)})},
- args: [],
- source: "doClassify\x0a\x09self subclassResponsibility",
- messageSends: ["subclassResponsibility"],
- referencedClasses: []
- }),
- globals.HLClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "method",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@method"];
- return $1;
- },
- args: [],
- source: "method\x0a\x09^ method",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "method:",
- protocol: 'accessing',
- fn: function (anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$receiver;
- self["@method"]=anObject;
- $1=self._next();
- if(($receiver = $1) == nil || $receiver == null){
- $1;
- } else {
- var nextLink;
- nextLink=$receiver;
- _st(nextLink)._method_(anObject);
- };
- return self}, function($ctx1) {$ctx1.fill(self,"method:",{anObject:anObject},globals.HLClassifier)})},
- args: ["anObject"],
- source: "method: anObject\x0a\x09method := anObject.\x0a\x09self next\x0a\x09\x09ifNotNil: [ :nextLink | nextLink method: anObject ]",
- messageSends: ["ifNotNil:", "next", "method:"],
- referencedClasses: []
- }),
- globals.HLClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "next",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@next"];
- return $1;
- },
- args: [],
- source: "next\x0a\x09^ next",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "next:",
- protocol: 'accessing',
- fn: function (anObject){
- var self=this;
- self["@next"]=anObject;
- return self},
- args: ["anObject"],
- source: "next: anObject\x0a\x09next := anObject",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLClassifier);
- smalltalk.addClass('HLAccessorClassifier', globals.HLClassifier, [], 'Helios-Helpers');
- globals.HLAccessorClassifier.comment="I am a classifier checking the method selector matches an instance variable name.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "doClassify",
- protocol: 'private',
- fn: function (){
- var self=this;
- var names,selector;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- names=_st(_st(self["@method"])._methodClass())._allInstanceVariableNames();
- selector=_st(self["@method"])._selector();
- $1=_st(_st(selector)._last()).__eq(":");
- if(smalltalk.assert($1)){
- selector=_st(selector)._allButLast();
- selector;
- };
- $2=_st(names)._includes_(selector);
- if(! smalltalk.assert($2)){
- return false;
- };
- _st(self["@method"])._protocol_("accessing");
- return true;
- }, function($ctx1) {$ctx1.fill(self,"doClassify",{names:names,selector:selector},globals.HLAccessorClassifier)})},
- args: [],
- source: "doClassify\x0a\x09| names selector |\x0a\x09\x0a\x09names := method methodClass allInstanceVariableNames.\x0a\x09selector := method selector.\x0a\x09\x0a\x09(selector last = ':')\x0a\x09\x09ifTrue: [ \x22selector might be a setter\x22\x0a\x09\x09\x09selector := selector allButLast ].\x0a\x09\x0a\x09(names includes: selector)\x0a\x09\x09ifFalse: [ ^ false ].\x0a\x09\x09\x0a\x09method protocol: 'accessing'.\x0a\x09^ true.",
- messageSends: ["allInstanceVariableNames", "methodClass", "selector", "ifTrue:", "=", "last", "allButLast", "ifFalse:", "includes:", "protocol:"],
- referencedClasses: []
- }),
- globals.HLAccessorClassifier);
- smalltalk.addClass('HLImplementorClassifier', globals.HLClassifier, [], 'Helios-Helpers');
- globals.HLImplementorClassifier.comment="I am a classifier checking the other implementations of the same selector and choose the protocol the most populated.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "doClassify",
- protocol: 'private',
- fn: function (){
- var self=this;
- var currentClass;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$4,$2;
- var $early={};
- try {
- currentClass=_st(self["@method"])._methodClass();
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- $1=_st(currentClass)._superclass();
- $ctx2.sendIdx["superclass"]=1;
- return _st($1)._isNil();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}))._whileFalse_((function(){
- return smalltalk.withContext(function($ctx2) {
- currentClass=_st(currentClass)._superclass();
- currentClass;
- $3=currentClass;
- $4=_st(self["@method"])._selector();
- $ctx2.sendIdx["selector"]=1;
- $2=_st($3)._includesSelector_($4);
- if(smalltalk.assert($2)){
- _st(self["@method"])._protocol_(_st(_st(currentClass).__gt_gt(_st(self["@method"])._selector()))._protocol());
- throw $early=[true];
- };
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
- return false;
- }
- catch(e) {if(e===$early)return e[0]; throw e}
- }, function($ctx1) {$ctx1.fill(self,"doClassify",{currentClass:currentClass},globals.HLImplementorClassifier)})},
- args: [],
- source: "doClassify\x0a\x09| currentClass |\x0a\x09currentClass := method methodClass.\x0a\x09\x0a\x09[ currentClass superclass isNil ] whileFalse: [\x0a\x09\x09currentClass := currentClass superclass.\x0a\x09\x09(currentClass includesSelector: method selector)\x0a\x09\x09\x09ifTrue: [ \x0a\x09\x09\x09\x09method protocol: (currentClass >> method selector) protocol.\x0a\x09\x09\x09\x09^ true ]].\x0a\x09\x0a\x09^ false.",
- messageSends: ["methodClass", "whileFalse:", "isNil", "superclass", "ifTrue:", "includesSelector:", "selector", "protocol:", "protocol", ">>"],
- referencedClasses: []
- }),
- globals.HLImplementorClassifier);
- smalltalk.addClass('HLPrefixClassifier', globals.HLClassifier, ['prefixMapping'], 'Helios-Helpers');
- globals.HLPrefixClassifier.comment="I am classifier checking the method selector to know if it begins with a known prefix.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "buildPrefixDictionary",
- protocol: 'initialization',
- fn: function (){
- var self=this;
- function $Dictionary(){return globals.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- self["@prefixMapping"]=_st($Dictionary())._new();
- $1=self["@prefixMapping"];
- _st($1)._at_put_("test","tests");
- $ctx1.sendIdx["at:put:"]=1;
- _st($1)._at_put_("bench","benchmarking");
- $ctx1.sendIdx["at:put:"]=2;
- _st($1)._at_put_("copy","copying");
- $ctx1.sendIdx["at:put:"]=3;
- _st($1)._at_put_("initialize","initialization");
- $ctx1.sendIdx["at:put:"]=4;
- _st($1)._at_put_("accept","visitor");
- $ctx1.sendIdx["at:put:"]=5;
- _st($1)._at_put_("visit","visitor");
- $ctx1.sendIdx["at:put:"]=6;
- _st($1)._at_put_("signal","signalling");
- $ctx1.sendIdx["at:put:"]=7;
- _st($1)._at_put_("parse","parsing");
- $ctx1.sendIdx["at:put:"]=8;
- _st($1)._at_put_("add","adding");
- $ctx1.sendIdx["at:put:"]=9;
- _st($1)._at_put_("is","testing");
- $ctx1.sendIdx["at:put:"]=10;
- _st($1)._at_put_("as","converting");
- $ctx1.sendIdx["at:put:"]=11;
- $2=_st($1)._at_put_("new","instance creation");
- return self}, function($ctx1) {$ctx1.fill(self,"buildPrefixDictionary",{},globals.HLPrefixClassifier)})},
- args: [],
- source: "buildPrefixDictionary\x0a\x09prefixMapping := Dictionary new.\x0a\x09prefixMapping \x0a\x09\x09at: 'test' put: 'tests';\x0a\x09 \x09at: 'bench' put: 'benchmarking';\x0a\x09 \x09at: 'copy' put: 'copying';\x0a\x09\x09at: 'initialize' put: 'initialization';\x0a\x09\x09at: 'accept' put: 'visitor';\x0a\x09\x09at: 'visit' put: 'visitor';\x0a\x09\x09at: 'signal' put: 'signalling';\x0a\x09\x09at: 'parse' put: 'parsing';\x0a\x09\x09at: 'add' put: 'adding';\x0a\x09\x09at: 'is' put: 'testing';\x0a\x09\x09at: 'as' put: 'converting';\x0a\x09\x09at: 'new' put: 'instance creation'.",
- messageSends: ["new", "at:put:"],
- referencedClasses: ["Dictionary"]
- }),
- globals.HLPrefixClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "doClassify",
- protocol: 'private',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- var $early={};
- try {
- _st(self["@prefixMapping"])._keysAndValuesDo_((function(prefix,protocol){
- return smalltalk.withContext(function($ctx2) {
- $1=_st(_st(self["@method"])._selector())._beginsWith_(prefix);
- if(smalltalk.assert($1)){
- _st(self["@method"])._protocol_(protocol);
- throw $early=[true];
- };
- }, function($ctx2) {$ctx2.fillBlock({prefix:prefix,protocol:protocol},$ctx1,1)})}));
- return false;
- }
- catch(e) {if(e===$early)return e[0]; throw e}
- }, function($ctx1) {$ctx1.fill(self,"doClassify",{},globals.HLPrefixClassifier)})},
- args: [],
- source: "doClassify\x0a\x09prefixMapping keysAndValuesDo: [ :prefix :protocol |\x0a\x09\x09(method selector beginsWith: prefix)\x0a\x09\x09\x09ifTrue: [\x0a\x09\x09\x09\x09method protocol: protocol.\x0a\x09\x09\x09\x09^ true ]].\x0a\x09^ false.",
- messageSends: ["keysAndValuesDo:", "ifTrue:", "beginsWith:", "selector", "protocol:"],
- referencedClasses: []
- }),
- globals.HLPrefixClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initialize",
- protocol: 'initialization',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- globals.HLPrefixClassifier.superclass.fn.prototype._initialize.apply(_st(self), []);
- self._buildPrefixDictionary();
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLPrefixClassifier)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x0a\x09self buildPrefixDictionary",
- messageSends: ["initialize", "buildPrefixDictionary"],
- referencedClasses: []
- }),
- globals.HLPrefixClassifier);
- smalltalk.addClass('HLSuperclassClassifier', globals.HLClassifier, [], 'Helios-Helpers');
- globals.HLSuperclassClassifier.comment="I am a classifier checking the superclass chain to find a matching selector.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "doClassify",
- protocol: 'private',
- fn: function (){
- var self=this;
- var protocolBag,methods,protocolToUse,counter;
- function $Dictionary(){return globals.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- function $HLReferencesModel(){return globals.HLReferencesModel||(typeof HLReferencesModel=="undefined"?nil:HLReferencesModel)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$1,$4,$3,$5;
- var $early={};
- try {
- protocolBag=_st($Dictionary())._new();
- $ctx1.sendIdx["new"]=1;
- methods=_st(_st($HLReferencesModel())._new())._implementorsOf_(_st(self["@method"])._selector());
- _st(methods)._ifEmpty_ifNotEmpty_((function(){
- throw $early=[false];
- }),(function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(methods)._do_((function(aMethod){
- var protocol;
- return smalltalk.withContext(function($ctx3) {
- protocol=_st(_st(aMethod)._method())._protocol();
- protocol;
- $2=_st(self["@method"])._methodClass();
- $ctx3.sendIdx["methodClass"]=1;
- $1=_st($2).__eq(_st(aMethod)._methodClass());
- $ctx3.sendIdx["="]=1;
- if(! smalltalk.assert($1)){
- $4=_st(_st(protocol)._first()).__eq("*");
- $ctx3.sendIdx["="]=2;
- $3=_st($4)._or_((function(){
- return smalltalk.withContext(function($ctx4) {
- return _st(protocol).__eq(_st(self["@method"])._defaultProtocol());
- }, function($ctx4) {$ctx4.fillBlock({},$ctx3,5)})}));
- if(! smalltalk.assert($3)){
- return _st(protocolBag)._at_put_(protocol,_st(_st(protocolBag)._at_ifAbsent_(protocol,(function(){
- return (0);
- }))).__plus((1)));
- };
- };
- }, function($ctx3) {$ctx3.fillBlock({aMethod:aMethod,protocol:protocol},$ctx2,3)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1,2)})}));
- _st(protocolBag)._ifEmpty_((function(){
- throw $early=[false];
- }));
- protocolToUse=nil;
- counter=(0);
- _st(protocolBag)._keysAndValuesDo_((function(key,value){
- return smalltalk.withContext(function($ctx2) {
- $5=_st(value).__gt(counter);
- if(smalltalk.assert($5)){
- counter=value;
- counter;
- protocolToUse=key;
- return protocolToUse;
- };
- }, function($ctx2) {$ctx2.fillBlock({key:key,value:value},$ctx1,9)})}));
- _st(self["@method"])._protocol_(protocolToUse);
- return true;
- }
- catch(e) {if(e===$early)return e[0]; throw e}
- }, function($ctx1) {$ctx1.fill(self,"doClassify",{protocolBag:protocolBag,methods:methods,protocolToUse:protocolToUse,counter:counter},globals.HLSuperclassClassifier)})},
- args: [],
- source: "doClassify\x0a\x09| protocolBag methods protocolToUse counter |\x0a\x09\x0a\x09protocolBag := Dictionary new.\x0a\x09methods := HLReferencesModel new implementorsOf: method selector.\x0a\x09methods\x0a\x09\x09ifEmpty: [ ^ false ]\x0a\x09\x09ifNotEmpty: [\x0a\x09\x09\x09methods \x0a\x09\x09\x09\x09do: [ :aMethod || protocol |\x0a\x09\x09\x09\x09\x09protocol := aMethod method protocol.\x0a\x09\x09\x09\x09\x09(method methodClass = aMethod methodClass)\x0a\x09\x09\x09\x09\x09\x09ifFalse: [\x0a\x09\x09\x09\x09\x09\x09((protocol first = '*') or: [ protocol = method defaultProtocol ])\x0a\x09\x09\x09\x09\x09\x09\x09ifFalse: [ \x0a\x09\x09\x09\x09\x09\x09\x09\x09protocolBag \x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09at: protocol \x0a\x09\x09\x09\x09\x09\x09\x09\x09\x09put: (protocolBag at: protocol ifAbsent: [ 0 ]) + 1 ] ] ] ].\x0a\x09\x09\x09\x0a\x09protocolBag ifEmpty: [ ^ false ].\x0a\x09protocolToUse := nil.\x0a\x09counter := 0.\x0a\x09protocolBag keysAndValuesDo: [ :key :value | value > counter \x0a\x09\x09ifTrue: [\x0a\x09\x09\x09counter := value.\x0a\x09\x09\x09protocolToUse := key ] ].\x0a\x09method protocol: protocolToUse.\x0a\x09^ true",
- messageSends: ["new", "implementorsOf:", "selector", "ifEmpty:ifNotEmpty:", "do:", "protocol", "method", "ifFalse:", "=", "methodClass", "or:", "first", "defaultProtocol", "at:put:", "+", "at:ifAbsent:", "ifEmpty:", "keysAndValuesDo:", "ifTrue:", ">", "protocol:"],
- referencedClasses: ["Dictionary", "HLReferencesModel"]
- }),
- globals.HLSuperclassClassifier);
- smalltalk.addClass('HLGenerationOutput', globals.Object, ['sourceCodes', 'protocol', 'targetClass'], 'Helios-Helpers');
- globals.HLGenerationOutput.comment="I am a simple data object used to store the result of a generation process.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "addSourceCode:",
- protocol: 'protocol',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@sourceCodes"])._add_(aString);
- return self}, function($ctx1) {$ctx1.fill(self,"addSourceCode:",{aString:aString},globals.HLGenerationOutput)})},
- args: ["aString"],
- source: "addSourceCode: aString\x0a\x09sourceCodes add: aString",
- messageSends: ["add:"],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "compile",
- protocol: 'protocol',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- _st(self["@sourceCodes"])._do_((function(methodSourceCode){
- return smalltalk.withContext(function($ctx2) {
- $1=_st(self["@targetClass"])._includesSelector_(_st(methodSourceCode)._selector());
- if(! smalltalk.assert($1)){
- return _st(self["@targetClass"])._compile_protocol_(_st(methodSourceCode)._sourceCode(),self["@protocol"]);
- };
- }, function($ctx2) {$ctx2.fillBlock({methodSourceCode:methodSourceCode},$ctx1,1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"compile",{},globals.HLGenerationOutput)})},
- args: [],
- source: "compile\x0a\x09sourceCodes do: [ :methodSourceCode |\x0a\x09\x09(targetClass includesSelector: methodSourceCode selector)\x0a\x09\x09\x09ifFalse: [ \x0a\x09\x09\x09\x09targetClass \x0a\x09\x09\x09\x09\x09compile: methodSourceCode sourceCode\x0a\x09\x09\x09\x09\x09protocol: protocol ] ]",
- messageSends: ["do:", "ifFalse:", "includesSelector:", "selector", "compile:protocol:", "sourceCode"],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initialize",
- protocol: 'initialization',
- fn: function (){
- var self=this;
- function $OrderedCollection(){return globals.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- globals.HLGenerationOutput.superclass.fn.prototype._initialize.apply(_st(self), []);
- self["@sourceCodes"]=_st($OrderedCollection())._new();
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLGenerationOutput)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09\x0a\x09sourceCodes := OrderedCollection new",
- messageSends: ["initialize", "new"],
- referencedClasses: ["OrderedCollection"]
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "protocol",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@protocol"];
- return $1;
- },
- args: [],
- source: "protocol\x0a\x09^ protocol",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "protocol:",
- protocol: 'accessing',
- fn: function (aString){
- var self=this;
- self["@protocol"]=aString;
- return self},
- args: ["aString"],
- source: "protocol: aString\x0a\x09protocol := aString",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sourceCodes",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@sourceCodes"];
- return $1;
- },
- args: [],
- source: "sourceCodes\x0a\x09^ sourceCodes",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sourceCodes:",
- protocol: 'accessing',
- fn: function (aCollection){
- var self=this;
- self["@sourceCodes"]=aCollection;
- return self},
- args: ["aCollection"],
- source: "sourceCodes: aCollection\x0a\x09sourceCodes := aCollection",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "targetClass",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@targetClass"];
- return $1;
- },
- args: [],
- source: "targetClass\x0a\x09^ targetClass",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "targetClass:",
- protocol: 'accessing',
- fn: function (aClass){
- var self=this;
- self["@targetClass"]=aClass;
- return self},
- args: ["aClass"],
- source: "targetClass: aClass\x0a\x09targetClass := aClass",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLGenerationOutput);
- smalltalk.addClass('HLMethodClassifier', globals.Object, ['firstClassifier'], 'Helios-Helpers');
- globals.HLMethodClassifier.comment="I am in charge of categorizing methods following this strategy:\x0a\x0a- is it an accessor?\x0a- is it overriding a superclass method?\x0a- is it starting with a know prefix?\x0a- how are categorized the other implementations?";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "addClassifier:",
- protocol: 'private',
- fn: function (aClassifier){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(aClassifier)._next_(self["@firstClassifier"]);
- self["@firstClassifier"]=aClassifier;
- return self}, function($ctx1) {$ctx1.fill(self,"addClassifier:",{aClassifier:aClassifier},globals.HLMethodClassifier)})},
- args: ["aClassifier"],
- source: "addClassifier: aClassifier\x0a\x09aClassifier next: firstClassifier.\x0a\x09firstClassifier := aClassifier",
- messageSends: ["next:"],
- referencedClasses: []
- }),
- globals.HLMethodClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classify:",
- protocol: 'protocol',
- fn: function (aMethod){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=self["@firstClassifier"];
- _st($1)._method_(aMethod);
- $2=_st($1)._classify();
- return self}, function($ctx1) {$ctx1.fill(self,"classify:",{aMethod:aMethod},globals.HLMethodClassifier)})},
- args: ["aMethod"],
- source: "classify: aMethod\x0a\x09firstClassifier\x0a\x09\x09method: aMethod;\x0a\x09\x09classify",
- messageSends: ["method:", "classify"],
- referencedClasses: []
- }),
- globals.HLMethodClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "classifyAll:",
- protocol: 'protocol',
- fn: function (aCollectionOfMethods){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(aCollectionOfMethods)._do_((function(method){
- return smalltalk.withContext(function($ctx2) {
- return self._classify_(method);
- }, function($ctx2) {$ctx2.fillBlock({method:method},$ctx1,1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"classifyAll:",{aCollectionOfMethods:aCollectionOfMethods},globals.HLMethodClassifier)})},
- args: ["aCollectionOfMethods"],
- source: "classifyAll: aCollectionOfMethods\x0a\x09aCollectionOfMethods do: [ :method |\x0a\x09\x09self classify: method ]",
- messageSends: ["do:", "classify:"],
- referencedClasses: []
- }),
- globals.HLMethodClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initialize",
- protocol: 'initialization',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- globals.HLMethodClassifier.superclass.fn.prototype._initialize.apply(_st(self), []);
- self._setupClassifiers();
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLMethodClassifier)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09\x0a\x09self setupClassifiers",
- messageSends: ["initialize", "setupClassifiers"],
- referencedClasses: []
- }),
- globals.HLMethodClassifier);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setupClassifiers",
- protocol: 'initialization',
- fn: function (){
- var self=this;
- function $HLImplementorClassifier(){return globals.HLImplementorClassifier||(typeof HLImplementorClassifier=="undefined"?nil:HLImplementorClassifier)}
- function $HLPrefixClassifier(){return globals.HLPrefixClassifier||(typeof HLPrefixClassifier=="undefined"?nil:HLPrefixClassifier)}
- function $HLSuperclassClassifier(){return globals.HLSuperclassClassifier||(typeof HLSuperclassClassifier=="undefined"?nil:HLSuperclassClassifier)}
- function $HLAccessorClassifier(){return globals.HLAccessorClassifier||(typeof HLAccessorClassifier=="undefined"?nil:HLAccessorClassifier)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3;
- $1=_st($HLImplementorClassifier())._new();
- $ctx1.sendIdx["new"]=1;
- self._addClassifier_($1);
- $ctx1.sendIdx["addClassifier:"]=1;
- $2=_st($HLPrefixClassifier())._new();
- $ctx1.sendIdx["new"]=2;
- self._addClassifier_($2);
- $ctx1.sendIdx["addClassifier:"]=2;
- $3=_st($HLSuperclassClassifier())._new();
- $ctx1.sendIdx["new"]=3;
- self._addClassifier_($3);
- $ctx1.sendIdx["addClassifier:"]=3;
- self._addClassifier_(_st($HLAccessorClassifier())._new());
- return self}, function($ctx1) {$ctx1.fill(self,"setupClassifiers",{},globals.HLMethodClassifier)})},
- args: [],
- source: "setupClassifiers\x0a\x09self addClassifier: HLImplementorClassifier new.\x0a\x09self addClassifier: HLPrefixClassifier new.\x0a\x09self addClassifier: HLSuperclassClassifier new.\x0a\x09self addClassifier: HLAccessorClassifier new",
- messageSends: ["addClassifier:", "new"],
- referencedClasses: ["HLImplementorClassifier", "HLPrefixClassifier", "HLSuperclassClassifier", "HLAccessorClassifier"]
- }),
- globals.HLMethodClassifier);
- smalltalk.addClass('HLMethodGenerator', globals.Object, ['output'], 'Helios-Helpers');
- globals.HLMethodGenerator.comment="I am the abstract super class of the method generators.\x0a\x0aMy main method is `generate` which produces an `output` object accessed with `#output`.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "class:",
- protocol: 'accessing',
- fn: function (aClass){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@output"])._targetClass_(aClass);
- return self}, function($ctx1) {$ctx1.fill(self,"class:",{aClass:aClass},globals.HLMethodGenerator)})},
- args: ["aClass"],
- source: "class: aClass\x0a\x09output targetClass: aClass",
- messageSends: ["targetClass:"],
- referencedClasses: []
- }),
- globals.HLMethodGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "generate",
- protocol: 'protocol',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$receiver;
- $1=_st(self["@output"])._targetClass();
- if(($receiver = $1) == nil || $receiver == null){
- self._error_("class should not be nil");
- } else {
- $1;
- };
- return self}, function($ctx1) {$ctx1.fill(self,"generate",{},globals.HLMethodGenerator)})},
- args: [],
- source: "generate\x0a\x09output targetClass ifNil: [ self error: 'class should not be nil'].",
- messageSends: ["ifNil:", "targetClass", "error:"],
- referencedClasses: []
- }),
- globals.HLMethodGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initialize",
- protocol: 'initialization',
- fn: function (){
- var self=this;
- function $HLGenerationOutput(){return globals.HLGenerationOutput||(typeof HLGenerationOutput=="undefined"?nil:HLGenerationOutput)}
- return smalltalk.withContext(function($ctx1) {
- globals.HLMethodGenerator.superclass.fn.prototype._initialize.apply(_st(self), []);
- self["@output"]=_st($HLGenerationOutput())._new();
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},globals.HLMethodGenerator)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09\x0a\x09output := HLGenerationOutput new",
- messageSends: ["initialize", "new"],
- referencedClasses: ["HLGenerationOutput"]
- }),
- globals.HLMethodGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "output",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@output"];
- return $1;
- },
- args: [],
- source: "output\x0a\x09^ output",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLMethodGenerator);
- smalltalk.addClass('HLAccessorsGenerator', globals.HLMethodGenerator, [], 'Helios-Helpers');
- globals.HLAccessorsGenerator.comment="I am a generator used to compile the getters/setters of a class.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "accessorProtocolForObject",
- protocol: 'double-dispatch',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@output"])._protocol_("accessing");
- return self}, function($ctx1) {$ctx1.fill(self,"accessorProtocolForObject",{},globals.HLAccessorsGenerator)})},
- args: [],
- source: "accessorProtocolForObject\x0a\x09output protocol: 'accessing'",
- messageSends: ["protocol:"],
- referencedClasses: []
- }),
- globals.HLAccessorsGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "accessorsForObject",
- protocol: 'double-dispatch',
- fn: function (){
- var self=this;
- var sources;
- function $OrderedCollection(){return globals.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- sources=_st($OrderedCollection())._new();
- _st(_st(_st(_st(self["@output"])._targetClass())._instanceVariableNames())._sorted())._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- $1=sources;
- _st($1)._add_(self._getterFor_(each));
- $ctx2.sendIdx["add:"]=1;
- $2=_st($1)._add_(self._setterFor_(each));
- return $2;
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1,1)})}));
- _st(self["@output"])._sourceCodes_(sources);
- return self}, function($ctx1) {$ctx1.fill(self,"accessorsForObject",{sources:sources},globals.HLAccessorsGenerator)})},
- args: [],
- source: "accessorsForObject\x0a\x09| sources |\x0a\x09\x0a\x09sources := OrderedCollection new.\x0a\x09output targetClass instanceVariableNames sorted do: [ :each | \x0a\x09\x09sources \x0a\x09\x09\x09add: (self getterFor: each);\x0a\x09\x09\x09add: (self setterFor: each) ].\x0a\x09output sourceCodes: sources",
- messageSends: ["new", "do:", "sorted", "instanceVariableNames", "targetClass", "add:", "getterFor:", "setterFor:", "sourceCodes:"],
- referencedClasses: ["OrderedCollection"]
- }),
- globals.HLAccessorsGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "generate",
- protocol: 'protocol',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- globals.HLAccessorsGenerator.superclass.fn.prototype._generate.apply(_st(self), []);
- $1=_st(self["@output"])._targetClass();
- _st($1)._accessorsSourceCodesWith_(self);
- $2=_st($1)._accessorProtocolWith_(self);
- return self}, function($ctx1) {$ctx1.fill(self,"generate",{},globals.HLAccessorsGenerator)})},
- args: [],
- source: "generate\x0a\x09super generate.\x0a\x09\x0a\x09output targetClass \x0a\x09\x09accessorsSourceCodesWith: self;\x0a\x09\x09accessorProtocolWith: self",
- messageSends: ["generate", "accessorsSourceCodesWith:", "targetClass", "accessorProtocolWith:"],
- referencedClasses: []
- }),
- globals.HLAccessorsGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "getterFor:",
- protocol: 'private',
- fn: function (anInstanceVariable){
- var self=this;
- function $HLMethodSourceCode(){return globals.HLMethodSourceCode||(typeof HLMethodSourceCode=="undefined"?nil:HLMethodSourceCode)}
- function $String(){return globals.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st($HLMethodSourceCode())._new();
- _st($2)._selector_(anInstanceVariable);
- $3=_st($2)._sourceCode_(_st($String())._streamContents_((function(stream){
- return smalltalk.withContext(function($ctx2) {
- _st(stream).__lt_lt(anInstanceVariable);
- $ctx2.sendIdx["<<"]=1;
- _st(_st(stream)._cr())._tab();
- return _st(_st(stream).__lt_lt("^ ")).__lt_lt(anInstanceVariable);
- $ctx2.sendIdx["<<"]=2;
- }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1,1)})})));
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"getterFor:",{anInstanceVariable:anInstanceVariable},globals.HLAccessorsGenerator)})},
- args: ["anInstanceVariable"],
- source: "getterFor: anInstanceVariable\x0a\x09^ HLMethodSourceCode new\x0a\x09\x09selector:anInstanceVariable;\x0a\x09\x09sourceCode: (String streamContents: [ :stream |\x0a\x09\x09stream << anInstanceVariable.\x0a\x09\x09stream cr tab.\x0a\x09\x09stream << '^ ' << anInstanceVariable ])",
- messageSends: ["selector:", "new", "sourceCode:", "streamContents:", "<<", "tab", "cr"],
- referencedClasses: ["HLMethodSourceCode", "String"]
- }),
- globals.HLAccessorsGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setterFor:",
- protocol: 'private',
- fn: function (anInstanceVariable){
- var self=this;
- function $HLMethodSourceCode(){return globals.HLMethodSourceCode||(typeof HLMethodSourceCode=="undefined"?nil:HLMethodSourceCode)}
- function $String(){return globals.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$4,$3,$1;
- $2=_st($HLMethodSourceCode())._new();
- _st($2)._selector_(_st(anInstanceVariable).__comma(":"));
- $3=_st($2)._sourceCode_(_st($String())._streamContents_((function(stream){
- return smalltalk.withContext(function($ctx2) {
- $4=_st(stream).__lt_lt(anInstanceVariable);
- $ctx2.sendIdx["<<"]=2;
- _st($4).__lt_lt(": anObject");
- $ctx2.sendIdx["<<"]=1;
- _st(_st(stream)._cr())._tab();
- return _st(_st(stream).__lt_lt(anInstanceVariable)).__lt_lt(" := anObject");
- $ctx2.sendIdx["<<"]=3;
- }, function($ctx2) {$ctx2.fillBlock({stream:stream},$ctx1,1)})})));
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"setterFor:",{anInstanceVariable:anInstanceVariable},globals.HLAccessorsGenerator)})},
- args: ["anInstanceVariable"],
- source: "setterFor: anInstanceVariable\x0a\x09^ HLMethodSourceCode new\x0a\x09\x09selector: anInstanceVariable, ':';\x0a\x09\x09sourceCode: (String streamContents: [ :stream |\x0a\x09\x09stream << anInstanceVariable << ': anObject'.\x0a\x09\x09stream cr tab.\x0a\x09\x09stream << anInstanceVariable << ' := anObject' ])",
- messageSends: ["selector:", "new", ",", "sourceCode:", "streamContents:", "<<", "tab", "cr"],
- referencedClasses: ["HLMethodSourceCode", "String"]
- }),
- globals.HLAccessorsGenerator);
- smalltalk.addClass('HLInitializeGenerator', globals.HLMethodGenerator, [], 'Helios-Helpers');
- globals.HLInitializeGenerator.comment="I am used to double-dispatch the `initialize` method(s) generation. I am a disposable object.\x0a\x0a## Usage\x0a\x0a ^ HLInitializeGenerator new\x0a class: aClass;\x0a generate;\x0a output";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "generate",
- protocol: 'protocol',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- globals.HLInitializeGenerator.superclass.fn.prototype._generate.apply(_st(self), []);
- $1=_st(self["@output"])._targetClass();
- _st($1)._initializeSourceCodesWith_(self);
- $2=_st($1)._initializeProtocolWith_(self);
- return self}, function($ctx1) {$ctx1.fill(self,"generate",{},globals.HLInitializeGenerator)})},
- args: [],
- source: "generate\x0a\x09super generate.\x0a\x09\x0a\x09output targetClass \x0a\x09\x09initializeSourceCodesWith: self;\x0a\x09\x09initializeProtocolWith: self",
- messageSends: ["generate", "initializeSourceCodesWith:", "targetClass", "initializeProtocolWith:"],
- referencedClasses: []
- }),
- globals.HLInitializeGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "generateInitializeCodeForObject",
- protocol: 'private',
- fn: function (){
- var self=this;
- function $String(){return globals.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $3,$2,$4,$5,$6,$7,$8,$1;
- $1=_st($String())._streamContents_((function(str){
- var instVars,size;
- return smalltalk.withContext(function($ctx2) {
- instVars=_st(_st(_st(self["@output"])._targetClass())._instanceVariableNames())._sorted();
- instVars;
- size=_st(instVars)._size();
- size;
- _st(str).__lt_lt("initialize");
- $ctx2.sendIdx["<<"]=1;
- $3=_st(str)._cr();
- $ctx2.sendIdx["cr"]=1;
- $2=_st($3)._tab();
- $ctx2.sendIdx["tab"]=1;
- _st($2).__lt_lt("super initialize.");
- $ctx2.sendIdx["<<"]=2;
- $4=_st($2)._cr();
- $ctx2.sendIdx["cr"]=2;
- $4;
- $5=_st(str)._cr();
- $ctx2.sendIdx["cr"]=3;
- _st($5)._tab();
- $ctx2.sendIdx["tab"]=2;
- return _st(instVars)._withIndexDo_((function(name,index){
- return smalltalk.withContext(function($ctx3) {
- $6=_st(index).__tild_eq((1));
- $ctx3.sendIdx["~="]=1;
- if(smalltalk.assert($6)){
- _st(_st(str)._cr())._tab();
- };
- $7=_st(str).__lt_lt(name);
- $ctx3.sendIdx["<<"]=4;
- _st($7).__lt_lt(" := nil");
- $ctx3.sendIdx["<<"]=3;
- $8=_st(index).__tild_eq(size);
- if(smalltalk.assert($8)){
- return _st(str).__lt_lt(".");
- };
- }, function($ctx3) {$ctx3.fillBlock({name:name,index:index},$ctx2,2)})}));
- }, function($ctx2) {$ctx2.fillBlock({str:str,instVars:instVars,size:size},$ctx1,1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"generateInitializeCodeForObject",{},globals.HLInitializeGenerator)})},
- args: [],
- source: "generateInitializeCodeForObject\x09\x0a\x09^ String streamContents: [ :str || instVars size |\x0a\x09\x09instVars := output targetClass instanceVariableNames sorted.\x0a\x09\x09size := instVars size.\x0a\x09\x09str << 'initialize'.\x0a\x09\x09str cr tab << 'super initialize.';cr.\x0a\x09\x09str cr tab.\x0a\x09\x09instVars withIndexDo: [ :name :index |\x0a\x09\x09\x09index ~= 1 ifTrue: [ str cr tab ].\x0a\x09\x09\x09str << name << ' := nil'.\x0a\x09\x09\x09index ~= size ifTrue: [ str << '.' ] ] ].",
- messageSends: ["streamContents:", "sorted", "instanceVariableNames", "targetClass", "size", "<<", "tab", "cr", "withIndexDo:", "ifTrue:", "~="],
- referencedClasses: ["String"]
- }),
- globals.HLInitializeGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initializeForObject",
- protocol: 'double-dispatch',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@output"])._addSourceCode_(self._initializeMethodForObject());
- return self}, function($ctx1) {$ctx1.fill(self,"initializeForObject",{},globals.HLInitializeGenerator)})},
- args: [],
- source: "initializeForObject\x0a\x09output addSourceCode: self initializeMethodForObject",
- messageSends: ["addSourceCode:", "initializeMethodForObject"],
- referencedClasses: []
- }),
- globals.HLInitializeGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initializeMethodForObject",
- protocol: 'private',
- fn: function (){
- var self=this;
- function $HLMethodSourceCode(){return globals.HLMethodSourceCode||(typeof HLMethodSourceCode=="undefined"?nil:HLMethodSourceCode)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st($HLMethodSourceCode())._new();
- _st($2)._selector_("initialize");
- _st($2)._sourceCode_(self._generateInitializeCodeForObject());
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"initializeMethodForObject",{},globals.HLInitializeGenerator)})},
- args: [],
- source: "initializeMethodForObject\x09\x0a\x09^ HLMethodSourceCode new\x0a\x09\x09selector: 'initialize';\x0a\x09\x09sourceCode: self generateInitializeCodeForObject;\x0a\x09\x09yourself",
- messageSends: ["selector:", "new", "sourceCode:", "generateInitializeCodeForObject", "yourself"],
- referencedClasses: ["HLMethodSourceCode"]
- }),
- globals.HLInitializeGenerator);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "initializeProtocolForObject",
- protocol: 'double-dispatch',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self["@output"])._protocol_("initialization");
- return self}, function($ctx1) {$ctx1.fill(self,"initializeProtocolForObject",{},globals.HLInitializeGenerator)})},
- args: [],
- source: "initializeProtocolForObject\x0a\x09output protocol: 'initialization'",
- messageSends: ["protocol:"],
- referencedClasses: []
- }),
- globals.HLInitializeGenerator);
- smalltalk.addClass('HLMethodSourceCode', globals.Object, ['selector', 'sourceCode'], 'Helios-Helpers');
- globals.HLMethodSourceCode.comment="I am a simple data object keeping track of the information about a method that will be compiled at the end of the generation process.";
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selector",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@selector"];
- return $1;
- },
- args: [],
- source: "selector\x0a\x09^ selector",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLMethodSourceCode);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "selector:",
- protocol: 'accessing',
- fn: function (aSelector){
- var self=this;
- self["@selector"]=aSelector;
- return self},
- args: ["aSelector"],
- source: "selector: aSelector\x0a\x09selector := aSelector",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLMethodSourceCode);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sourceCode",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@sourceCode"];
- return $1;
- },
- args: [],
- source: "sourceCode\x0a\x09^ sourceCode",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLMethodSourceCode);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "sourceCode:",
- protocol: 'accessing',
- fn: function (aString){
- var self=this;
- self["@sourceCode"]=aString;
- return self},
- args: ["aString"],
- source: "sourceCode: aString\x0a\x09sourceCode := aString",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLMethodSourceCode);
- smalltalk.addClass('HLPackageCommitErrorHelper', globals.Object, ['model'], 'Helios-Helpers');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "commitPackage",
- protocol: 'actions',
- fn: function (){
- var self=this;
- function $HLCommitPackageCommand(){return globals.HLCommitPackageCommand||(typeof HLCommitPackageCommand=="undefined"?nil:HLCommitPackageCommand)}
- return smalltalk.withContext(function($ctx1) {
- _st(_st($HLCommitPackageCommand())._for_(self._model()))._execute();
- return self}, function($ctx1) {$ctx1.fill(self,"commitPackage",{},globals.HLPackageCommitErrorHelper)})},
- args: [],
- source: "commitPackage\x0a\x09(HLCommitPackageCommand for: self model)\x0a\x09\x09execute",
- messageSends: ["execute", "for:", "model"],
- referencedClasses: ["HLCommitPackageCommand"]
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "commitToPath:",
- protocol: 'actions',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(_st(self._package())._transport())._setPath_(aString);
- self._commitPackage();
- return self}, function($ctx1) {$ctx1.fill(self,"commitToPath:",{aString:aString},globals.HLPackageCommitErrorHelper)})},
- args: ["aString"],
- source: "commitToPath: aString\x0a\x09\x22We only take AMD package transport into account for now\x22\x0a\x09\x0a\x09self package transport setPath: aString.\x0a\x09\x0a\x09self commitPackage",
- messageSends: ["setPath:", "transport", "package", "commitPackage"],
- referencedClasses: []
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- var $1;
- $1=self["@model"];
- return $1;
- },
- args: [],
- source: "model\x0a\x09^ model",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "model:",
- protocol: 'accessing',
- fn: function (aToolModel){
- var self=this;
- self["@model"]=aToolModel;
- return self},
- args: ["aToolModel"],
- source: "model: aToolModel\x0a\x09model := aToolModel",
- messageSends: [],
- referencedClasses: []
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "package",
- protocol: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(self._model())._packageToCommit();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"package",{},globals.HLPackageCommitErrorHelper)})},
- args: [],
- source: "package\x0a\x09^ self model packageToCommit",
- messageSends: ["packageToCommit", "model"],
- referencedClasses: []
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "showHelp",
- protocol: 'actions',
- fn: function (){
- var self=this;
- function $HLConfirmationWidget(){return globals.HLConfirmationWidget||(typeof HLConfirmationWidget=="undefined"?nil:HLConfirmationWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4;
- $1=_st($HLConfirmationWidget())._new();
- $2=$1;
- $3=_st("Commit failed for namespace \x22".__comma(_st(_st(self._package())._transport())._namespace())).__comma("\x22. Do you want to commit to another path?");
- $ctx1.sendIdx[","]=1;
- _st($2)._confirmationString_($3);
- _st($1)._actionBlock_((function(){
- return smalltalk.withContext(function($ctx2) {
- return self._showNewCommitPath();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
- _st($1)._cancelButtonLabel_("Abandon");
- _st($1)._confirmButtonLabel_("Set path");
- $4=_st($1)._show();
- return self}, function($ctx1) {$ctx1.fill(self,"showHelp",{},globals.HLPackageCommitErrorHelper)})},
- args: [],
- source: "showHelp\x0a\x09HLConfirmationWidget new\x0a\x09\x09confirmationString: 'Commit failed for namespace \x22', self package transport namespace, '\x22. Do you want to commit to another path?';\x0a\x09\x09actionBlock: [ self showNewCommitPath ];\x0a\x09\x09cancelButtonLabel: 'Abandon';\x0a\x09\x09confirmButtonLabel: 'Set path';\x0a\x09\x09show\x0a\x09",
- messageSends: ["confirmationString:", "new", ",", "namespace", "transport", "package", "actionBlock:", "showNewCommitPath", "cancelButtonLabel:", "confirmButtonLabel:", "show"],
- referencedClasses: ["HLConfirmationWidget"]
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "showNewCommitPath",
- protocol: 'actions',
- fn: function (){
- var self=this;
- function $HLRequestWidget(){return globals.HLRequestWidget||(typeof HLRequestWidget=="undefined"?nil:HLRequestWidget)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st($HLRequestWidget())._new();
- _st($1)._beSingleline();
- _st($1)._confirmationString_("Set commit path");
- _st($1)._actionBlock_((function(url){
- return smalltalk.withContext(function($ctx2) {
- return self._commitToPath_(url);
- }, function($ctx2) {$ctx2.fillBlock({url:url},$ctx1,1)})}));
- _st($1)._confirmButtonLabel_("Commit with new path");
- _st($1)._value_("/src");
- $2=_st($1)._show();
- return self}, function($ctx1) {$ctx1.fill(self,"showNewCommitPath",{},globals.HLPackageCommitErrorHelper)})},
- args: [],
- source: "showNewCommitPath\x0a\x09HLRequestWidget new\x0a\x09\x09beSingleline;\x0a\x09\x09confirmationString: 'Set commit path';\x0a\x09\x09actionBlock: [ :url | self commitToPath: url ];\x0a\x09\x09confirmButtonLabel: 'Commit with new path';\x0a\x09\x09value: '/src';\x0a\x09\x09show",
- messageSends: ["beSingleline", "new", "confirmationString:", "actionBlock:", "commitToPath:", "confirmButtonLabel:", "value:", "show"],
- referencedClasses: ["HLRequestWidget"]
- }),
- globals.HLPackageCommitErrorHelper);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "on:",
- protocol: 'instance creation',
- fn: function (aToolModel){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=self._new();
- _st($2)._model_(aToolModel);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"on:",{aToolModel:aToolModel},globals.HLPackageCommitErrorHelper.klass)})},
- args: ["aToolModel"],
- source: "on: aToolModel\x0a\x09^ self new\x0a\x09\x09model: aToolModel;\x0a\x09\x09yourself",
- messageSends: ["model:", "new", "yourself"],
- referencedClasses: []
- }),
- globals.HLPackageCommitErrorHelper.klass);
- });
|