| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721 | smalltalk.addPackage('Compiler-Core', {});smalltalk.addClass('Compiler', smalltalk.Object, ['currentClass', 'source', 'unknownVariables', 'codeGeneratorClass'], 'Compiler-Core');smalltalk.addMethod("_codeGeneratorClass",smalltalk.method({selector: "codeGeneratorClass",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $1;if(($receiver = self["@codeGeneratorClass"]) == nil || $receiver == undefined){$1=(smalltalk.InliningCodeGenerator || InliningCodeGenerator);} else {$1=self["@codeGeneratorClass"];};return $1;}, self, "codeGeneratorClass", [], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_codeGeneratorClass_",smalltalk.method({selector: "codeGeneratorClass:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { self["@codeGeneratorClass"]=aClass;return self}, self, "codeGeneratorClass:", [aClass], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_compile_",smalltalk.method({selector: "compile:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._compileNode_(_st(self)._parse_(aString));return $1;}, self, "compile:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_compile_forClass_",smalltalk.method({selector: "compile:forClass:",fn: function (aString,aClass){var self=this;return smalltalk.withContext(function($ctx) { var $1;_st(self)._currentClass_(aClass);_st(self)._source_(aString);$1=_st(self)._compile_(aString);return $1;}, self, "compile:forClass:", [aString,aClass], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_compileExpression_",smalltalk.method({selector: "compileExpression:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { var $1;_st(self)._currentClass_((smalltalk.DoIt || DoIt));_st(self)._source_(_st(_st("doIt ^[").__comma(aString)).__comma("] value"));$1=_st(self)._compileNode_(_st(self)._parse_(_st(self)._source()));return $1;}, self, "compileExpression:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_compileNode_",smalltalk.method({selector: "compileNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;var generator;var result;generator=_st(_st(self)._codeGeneratorClass())._new();_st(generator)._source_(_st(self)._source());$1=_st(generator)._currentClass_(_st(self)._currentClass());result=_st(generator)._compileNode_(aNode);_st(self)._unknownVariables_([]);return result;}, self, "compileNode:", [aNode], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_currentClass",smalltalk.method({selector: "currentClass",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { return self["@currentClass"];}, self, "currentClass", [], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_currentClass_",smalltalk.method({selector: "currentClass:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { self["@currentClass"]=aClass;return self}, self, "currentClass:", [aClass], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_eval_",smalltalk.method({selector: "eval:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { return eval(aString);;return self}, self, "eval:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_evaluateExpression_",smalltalk.method({selector: "evaluateExpression:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { var result;_st((smalltalk.DoIt || DoIt))._addCompiledMethod_(_st(self)._eval_(_st(self)._compileExpression_(aString)));result=_st(_st((smalltalk.DoIt || DoIt))._new())._doIt();_st((smalltalk.DoIt || DoIt))._removeCompiledMethod_(_st(_st((smalltalk.DoIt || DoIt))._methodDictionary())._at_("doIt"));return result;}, self, "evaluateExpression:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_install_forClass_category_",smalltalk.method({selector: "install:forClass:category:",fn: function (aString,aBehavior,anotherString){var self=this;return smalltalk.withContext(function($ctx) { var compiled;compiled=_st(self)._eval_(_st(self)._compile_forClass_(aString,aBehavior));_st(compiled)._category_(anotherString);_st(aBehavior)._addCompiledMethod_(compiled);_st(self)._setupClass_(aBehavior);return compiled;}, self, "install:forClass:category:", [aString,aBehavior,anotherString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_parse_",smalltalk.method({selector: "parse:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._parse_(aString);return $1;}, self, "parse:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_parseExpression_",smalltalk.method({selector: "parseExpression:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._parse_(_st(_st("doIt ^[").__comma(aString)).__comma("] value"));return $1;}, self, "parseExpression:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_recompile_",smalltalk.method({selector: "recompile:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { var $1;_st(_st(aClass)._methodDictionary())._do_((function(each){_st(console)._log_(_st(_st(_st(aClass)._name()).__comma(" >> ")).__comma(_st(each)._selector()));return _st(self)._install_forClass_category_(_st(each)._source(),aClass,_st(each)._category());}));_st(self)._setupClass_(aClass);$1=_st(aClass)._isMetaclass();if(! smalltalk.assert($1)){_st(self)._recompile_(_st(aClass)._class());};return self}, self, "recompile:", [aClass], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_recompileAll",smalltalk.method({selector: "recompileAll",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $1;_st(_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._classes())._do_((function(each){_st((smalltalk.Transcript || Transcript))._show_(each);$1=_st((smalltalk.Transcript || Transcript))._cr();$1;return _st((function(){return _st(self)._recompile_(each);}))._valueWithTimeout_((100));}));return self}, self, "recompileAll", [], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_setupClass_",smalltalk.method({selector: "setupClass:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { smalltalk.init(aClass);;return self}, self, "setupClass:", [aClass], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_source",smalltalk.method({selector: "source",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $1;if(($receiver = self["@source"]) == nil || $receiver == undefined){$1="";} else {$1=self["@source"];};return $1;}, self, "source", [], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_source_",smalltalk.method({selector: "source:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { self["@source"]=aString;return self}, self, "source:", [aString], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_unknownVariables",smalltalk.method({selector: "unknownVariables",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { return self["@unknownVariables"];}, self, "unknownVariables", [], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_unknownVariables_",smalltalk.method({selector: "unknownVariables:",fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx) { self["@unknownVariables"]=aCollection;return self}, self, "unknownVariables:", [aCollection], smalltalk.Compiler)}}),smalltalk.Compiler);smalltalk.addMethod("_recompile_",smalltalk.method({selector: "recompile:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { _st(_st(self)._new())._recompile_(aClass);return self}, self, "recompile:", [aClass], smalltalk.Compiler.klass)}}),smalltalk.Compiler.klass);smalltalk.addMethod("_recompileAll",smalltalk.method({selector: "recompileAll",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { _st(_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._classes())._do_((function(each){return _st(self)._recompile_(each);}));return self}, self, "recompileAll", [], smalltalk.Compiler.klass)}}),smalltalk.Compiler.klass);smalltalk.addClass('DoIt', smalltalk.Object, [], 'Compiler-Core');smalltalk.addClass('NodeVisitor', smalltalk.Object, [], 'Compiler-Core');smalltalk.addMethod("_visit_",smalltalk.method({selector: "visit:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(aNode)._accept_(self);return $1;}, self, "visit:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitAll_",smalltalk.method({selector: "visitAll:",fn: function (aCollection){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(aCollection)._do_((function(each){return _st(self)._visit_(each);}));return $1;}, self, "visitAll:", [aCollection], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitAssignmentNode_",smalltalk.method({selector: "visitAssignmentNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitAssignmentNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitBlockNode_",smalltalk.method({selector: "visitBlockNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitBlockNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitBlockSequenceNode_",smalltalk.method({selector: "visitBlockSequenceNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitSequenceNode_(aNode);return $1;}, self, "visitBlockSequenceNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitCascadeNode_",smalltalk.method({selector: "visitCascadeNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitCascadeNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitClassReferenceNode_",smalltalk.method({selector: "visitClassReferenceNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitVariableNode_(aNode);return $1;}, self, "visitClassReferenceNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitDynamicArrayNode_",smalltalk.method({selector: "visitDynamicArrayNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitDynamicArrayNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitDynamicDictionaryNode_",smalltalk.method({selector: "visitDynamicDictionaryNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitDynamicDictionaryNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitJSStatementNode_",smalltalk.method({selector: "visitJSStatementNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitJSStatementNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitMethodNode_",smalltalk.method({selector: "visitMethodNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitMethodNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitNode_",smalltalk.method({selector: "visitNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitAll_(_st(aNode)._nodes());return $1;}, self, "visitNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitReturnNode_",smalltalk.method({selector: "visitReturnNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitReturnNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitSendNode_",smalltalk.method({selector: "visitSendNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitSendNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitSequenceNode_",smalltalk.method({selector: "visitSequenceNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitSequenceNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitValueNode_",smalltalk.method({selector: "visitValueNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitValueNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addMethod("_visitVariableNode_",smalltalk.method({selector: "visitVariableNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st(self)._visitNode_(aNode);return $1;}, self, "visitVariableNode:", [aNode], smalltalk.NodeVisitor)}}),smalltalk.NodeVisitor);smalltalk.addClass('AbstractCodeGenerator', smalltalk.NodeVisitor, ['currentClass', 'source'], 'Compiler-Core');smalltalk.addMethod("_classNameFor_",smalltalk.method({selector: "classNameFor:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { var $2,$3,$1;$2=_st(aClass)._isMetaclass();if(smalltalk.assert($2)){$1=_st(_st(_st(aClass)._instanceClass())._name()).__comma(".klass");} else {$3=_st(aClass)._isNil();if(smalltalk.assert($3)){$1="nil";} else {$1=_st(aClass)._name();};};return $1;}, self, "classNameFor:", [aClass], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_compileNode_",smalltalk.method({selector: "compileNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { _st(self)._subclassResponsibility();return self}, self, "compileNode:", [aNode], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_currentClass",smalltalk.method({selector: "currentClass",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { return self["@currentClass"];}, self, "currentClass", [], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_currentClass_",smalltalk.method({selector: "currentClass:",fn: function (aClass){var self=this;return smalltalk.withContext(function($ctx) { self["@currentClass"]=aClass;return self}, self, "currentClass:", [aClass], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_pseudoVariables",smalltalk.method({selector: "pseudoVariables",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { return ["self", "super", "true", "false", "nil", "thisContext"];}, self, "pseudoVariables", [], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_safeVariableNameFor_",smalltalk.method({selector: "safeVariableNameFor:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { var $2,$1;$2=_st(_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._reservedWords())._includes_(aString);if(smalltalk.assert($2)){$1=_st(aString).__comma("_");} else {$1=aString;};return $1;}, self, "safeVariableNameFor:", [aString], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_source",smalltalk.method({selector: "source",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $1;if(($receiver = self["@source"]) == nil || $receiver == undefined){$1="";} else {$1=self["@source"];};return $1;}, self, "source", [], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addMethod("_source_",smalltalk.method({selector: "source:",fn: function (aString){var self=this;return smalltalk.withContext(function($ctx) { self["@source"]=aString;return self}, self, "source:", [aString], smalltalk.AbstractCodeGenerator)}}),smalltalk.AbstractCodeGenerator);smalltalk.addClass('CodeGenerator', smalltalk.AbstractCodeGenerator, [], 'Compiler-Core');smalltalk.addMethod("_compileNode_",smalltalk.method({selector: "compileNode:",fn: function (aNode){var self=this;return smalltalk.withContext(function($ctx) { var $2,$3,$1;var ir;var stream;_st(_st(self)._semanticAnalyzer())._visit_(aNode);ir=_st(_st(self)._translator())._visit_(aNode);$2=_st(self)._irTranslator();_st($2)._visit_(ir);$3=_st($2)._contents();$1=$3;return $1;}, self, "compileNode:", [aNode], smalltalk.CodeGenerator)}}),smalltalk.CodeGenerator);smalltalk.addMethod("_irTranslator",smalltalk.method({selector: "irTranslator",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st((smalltalk.IRJSTranslator || IRJSTranslator))._new();return $1;}, self, "irTranslator", [], smalltalk.CodeGenerator)}}),smalltalk.CodeGenerator);smalltalk.addMethod("_semanticAnalyzer",smalltalk.method({selector: "semanticAnalyzer",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $1;$1=_st((smalltalk.SemanticAnalyzer || SemanticAnalyzer))._on_(_st(self)._currentClass());return $1;}, self, "semanticAnalyzer", [], smalltalk.CodeGenerator)}}),smalltalk.CodeGenerator);smalltalk.addMethod("_translator",smalltalk.method({selector: "translator",fn: function (){var self=this;return smalltalk.withContext(function($ctx) { var $2,$3,$1;$2=_st((smalltalk.IRASTTranslator || IRASTTranslator))._new();_st($2)._source_(_st(self)._source());_st($2)._theClass_(_st(self)._currentClass());$3=_st($2)._yourself();$1=$3;return $1;}, self, "translator", [], smalltalk.CodeGenerator)}}),smalltalk.CodeGenerator);
 |