12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301 |
- smalltalk.addPackage('Compiler-AST', {});
- smalltalk.addClass('Node', smalltalk.Object, ['position', 'nodes', 'shouldBeInlined', 'shouldBeAliased'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_addNode_",
- smalltalk.method({
- selector: "addNode:",
- fn: function (aNode){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(_st(self)._nodes())._add_(aNode);
- return self}, function($ctx1) {$ctx1.fill(self,"addNode:", [aNode], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isAssignmentNode",
- smalltalk.method({
- selector: "isAssignmentNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isAssignmentNode", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isBlockNode",
- smalltalk.method({
- selector: "isBlockNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isBlockNode", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isBlockSequenceNode",
- smalltalk.method({
- selector: "isBlockSequenceNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isBlockSequenceNode", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isImmutable",
- smalltalk.method({
- selector: "isImmutable",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isImmutable", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isReturnNode",
- smalltalk.method({
- selector: "isReturnNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isReturnNode", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isSendNode",
- smalltalk.method({
- selector: "isSendNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isSendNode", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_isValueNode",
- smalltalk.method({
- selector: "isValueNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isValueNode", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_nodes",
- smalltalk.method({
- selector: "nodes",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@nodes"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@nodes"]=_st((smalltalk.Array || Array))._new();
- $1=self["@nodes"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"nodes", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_nodes_",
- smalltalk.method({
- selector: "nodes:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@nodes"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"nodes:", [aCollection], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_position",
- smalltalk.method({
- selector: "position",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@position"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@position"]=_st((0)).__at((0));
- $1=self["@position"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"position", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_position_",
- smalltalk.method({
- selector: "position:",
- fn: function (aPosition){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@position"]=aPosition;
- return self}, function($ctx1) {$ctx1.fill(self,"position:", [aPosition], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_shouldBeAliased",
- smalltalk.method({
- selector: "shouldBeAliased",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@shouldBeAliased"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=false;
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"shouldBeAliased", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_shouldBeAliased_",
- smalltalk.method({
- selector: "shouldBeAliased:",
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@shouldBeAliased"]=aBoolean;
- return self}, function($ctx1) {$ctx1.fill(self,"shouldBeAliased:", [aBoolean], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_shouldBeInlined",
- smalltalk.method({
- selector: "shouldBeInlined",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@shouldBeInlined"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=false;
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"shouldBeInlined", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_shouldBeInlined_",
- smalltalk.method({
- selector: "shouldBeInlined:",
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@shouldBeInlined"]=aBoolean;
- return self}, function($ctx1) {$ctx1.fill(self,"shouldBeInlined:", [aBoolean], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addMethod(
- "_subtreeNeedsAliasing",
- smalltalk.method({
- selector: "subtreeNeedsAliasing",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(_st(_st(self)._shouldBeAliased())._or_((function(){
- return smalltalk.withContext(function($ctx2) {
return _st(self)._shouldBeInlined();
- }, function($ctx2) {$ctx2.fill(null, null, {})})})))._or_((function(){
- return smalltalk.withContext(function($ctx2) {
return _st(_st(_st(self)._nodes())._detect_ifNone_((function(each){
- return smalltalk.withContext(function($ctx3) {
return _st(each)._subtreeNeedsAliasing();
- }, function($ctx3) {$ctx3.fill(null, null, {})})}),(function(){
- return smalltalk.withContext(function($ctx3) {
return false;
- }, function($ctx3) {$ctx3.fill(null, null, {})})}))).__tild_eq(false);
- }, function($ctx2) {$ctx2.fill(null, null, {})})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"subtreeNeedsAliasing", [], {}, smalltalk.Node)})}
- }),
- smalltalk.Node);
- smalltalk.addClass('AssignmentNode', smalltalk.Node, ['left', 'right'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitAssignmentNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addMethod(
- "_isAssignmentNode",
- smalltalk.method({
- selector: "isAssignmentNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isAssignmentNode", [], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addMethod(
- "_left",
- smalltalk.method({
- selector: "left",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@left"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"left", [], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addMethod(
- "_left_",
- smalltalk.method({
- selector: "left:",
- fn: function (aNode){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@left"]=aNode;
- return self}, function($ctx1) {$ctx1.fill(self,"left:", [aNode], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addMethod(
- "_nodes",
- smalltalk.method({
- selector: "nodes",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st((smalltalk.Array || Array))._with_with_(_st(self)._left(),_st(self)._right());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"nodes", [], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addMethod(
- "_right",
- smalltalk.method({
- selector: "right",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@right"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"right", [], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addMethod(
- "_right_",
- smalltalk.method({
- selector: "right:",
- fn: function (aNode){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@right"]=aNode;
- return self}, function($ctx1) {$ctx1.fill(self,"right:", [aNode], {}, smalltalk.AssignmentNode)})}
- }),
- smalltalk.AssignmentNode);
- smalltalk.addClass('BlockNode', smalltalk.Node, ['parameters', 'scope'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitBlockNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.BlockNode)})}
- }),
- smalltalk.BlockNode);
- smalltalk.addMethod(
- "_isBlockNode",
- smalltalk.method({
- selector: "isBlockNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isBlockNode", [], {}, smalltalk.BlockNode)})}
- }),
- smalltalk.BlockNode);
- smalltalk.addMethod(
- "_parameters",
- smalltalk.method({
- selector: "parameters",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@parameters"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@parameters"]=_st((smalltalk.Array || Array))._new();
- $1=self["@parameters"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"parameters", [], {}, smalltalk.BlockNode)})}
- }),
- smalltalk.BlockNode);
- smalltalk.addMethod(
- "_parameters_",
- smalltalk.method({
- selector: "parameters:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@parameters"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"parameters:", [aCollection], {}, smalltalk.BlockNode)})}
- }),
- smalltalk.BlockNode);
- smalltalk.addMethod(
- "_scope",
- smalltalk.method({
- selector: "scope",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@scope"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"scope", [], {}, smalltalk.BlockNode)})}
- }),
- smalltalk.BlockNode);
- smalltalk.addMethod(
- "_scope_",
- smalltalk.method({
- selector: "scope:",
- fn: function (aLexicalScope){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@scope"]=aLexicalScope;
- return self}, function($ctx1) {$ctx1.fill(self,"scope:", [aLexicalScope], {}, smalltalk.BlockNode)})}
- }),
- smalltalk.BlockNode);
- smalltalk.addClass('CascadeNode', smalltalk.Node, ['receiver'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitCascadeNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.CascadeNode)})}
- }),
- smalltalk.CascadeNode);
- smalltalk.addMethod(
- "_receiver",
- smalltalk.method({
- selector: "receiver",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@receiver"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"receiver", [], {}, smalltalk.CascadeNode)})}
- }),
- smalltalk.CascadeNode);
- smalltalk.addMethod(
- "_receiver_",
- smalltalk.method({
- selector: "receiver:",
- fn: function (aNode){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@receiver"]=aNode;
- return self}, function($ctx1) {$ctx1.fill(self,"receiver:", [aNode], {}, smalltalk.CascadeNode)})}
- }),
- smalltalk.CascadeNode);
- smalltalk.addClass('DynamicArrayNode', smalltalk.Node, [], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitDynamicArrayNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.DynamicArrayNode)})}
- }),
- smalltalk.DynamicArrayNode);
- smalltalk.addClass('DynamicDictionaryNode', smalltalk.Node, [], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitDynamicDictionaryNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.DynamicDictionaryNode)})}
- }),
- smalltalk.DynamicDictionaryNode);
- smalltalk.addClass('JSStatementNode', smalltalk.Node, ['source'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitJSStatementNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.JSStatementNode)})}
- }),
- smalltalk.JSStatementNode);
- smalltalk.addMethod(
- "_source",
- smalltalk.method({
- selector: "source",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@source"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1="";
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"source", [], {}, smalltalk.JSStatementNode)})}
- }),
- smalltalk.JSStatementNode);
- smalltalk.addMethod(
- "_source_",
- smalltalk.method({
- selector: "source:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@source"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"source:", [aString], {}, smalltalk.JSStatementNode)})}
- }),
- smalltalk.JSStatementNode);
- smalltalk.addClass('MethodNode', smalltalk.Node, ['selector', 'arguments', 'source', 'scope', 'classReferences', 'messageSends', 'superSends'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitMethodNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_arguments",
- smalltalk.method({
- selector: "arguments",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@arguments"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=[];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"arguments", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_arguments_",
- smalltalk.method({
- selector: "arguments:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@arguments"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"arguments:", [aCollection], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_classReferences",
- smalltalk.method({
- selector: "classReferences",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@classReferences"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"classReferences", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_classReferences_",
- smalltalk.method({
- selector: "classReferences:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@classReferences"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"classReferences:", [aCollection], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_messageSends",
- smalltalk.method({
- selector: "messageSends",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@messageSends"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"messageSends", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_messageSends_",
- smalltalk.method({
- selector: "messageSends:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@messageSends"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"messageSends:", [aCollection], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_scope",
- smalltalk.method({
- selector: "scope",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@scope"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"scope", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_scope_",
- smalltalk.method({
- selector: "scope:",
- fn: function (aMethodScope){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@scope"]=aMethodScope;
- return self}, function($ctx1) {$ctx1.fill(self,"scope:", [aMethodScope], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_selector",
- smalltalk.method({
- selector: "selector",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@selector"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selector", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_selector_",
- smalltalk.method({
- selector: "selector:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@selector"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"selector:", [aString], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_source",
- smalltalk.method({
- selector: "source",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@source"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"source", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_source_",
- smalltalk.method({
- selector: "source:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@source"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"source:", [aString], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_superSends",
- smalltalk.method({
- selector: "superSends",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@superSends"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"superSends", [], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addMethod(
- "_superSends_",
- smalltalk.method({
- selector: "superSends:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@superSends"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"superSends:", [aCollection], {}, smalltalk.MethodNode)})}
- }),
- smalltalk.MethodNode);
- smalltalk.addClass('ReturnNode', smalltalk.Node, ['scope'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitReturnNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.ReturnNode)})}
- }),
- smalltalk.ReturnNode);
- smalltalk.addMethod(
- "_isReturnNode",
- smalltalk.method({
- selector: "isReturnNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isReturnNode", [], {}, smalltalk.ReturnNode)})}
- }),
- smalltalk.ReturnNode);
- smalltalk.addMethod(
- "_nonLocalReturn",
- smalltalk.method({
- selector: "nonLocalReturn",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(_st(_st(self)._scope())._isMethodScope())._not();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"nonLocalReturn", [], {}, smalltalk.ReturnNode)})}
- }),
- smalltalk.ReturnNode);
- smalltalk.addMethod(
- "_scope",
- smalltalk.method({
- selector: "scope",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@scope"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"scope", [], {}, smalltalk.ReturnNode)})}
- }),
- smalltalk.ReturnNode);
- smalltalk.addMethod(
- "_scope_",
- smalltalk.method({
- selector: "scope:",
- fn: function (aLexicalScope){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@scope"]=aLexicalScope;
- return self}, function($ctx1) {$ctx1.fill(self,"scope:", [aLexicalScope], {}, smalltalk.ReturnNode)})}
- }),
- smalltalk.ReturnNode);
- smalltalk.addClass('SendNode', smalltalk.Node, ['selector', 'arguments', 'receiver', 'superSend', 'index'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitSendNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_arguments",
- smalltalk.method({
- selector: "arguments",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@arguments"];
- if(($receiver = $2) == nil || $receiver == undefined){
- self["@arguments"]=[];
- $1=self["@arguments"];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"arguments", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_arguments_",
- smalltalk.method({
- selector: "arguments:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@arguments"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"arguments:", [aCollection], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_cascadeNodeWithMessages_",
- smalltalk.method({
- selector: "cascadeNodeWithMessages:",
- fn: function (aCollection){
- var self=this;
- var first;
- return smalltalk.withContext(function($ctx1) {
var $1,$2,$4,$5,$3;
- $1=_st((smalltalk.SendNode || SendNode))._new();
- _st($1)._selector_(_st(self)._selector());
- _st($1)._arguments_(_st(self)._arguments());
- $2=_st($1)._yourself();
- first=$2;
- $4=_st((smalltalk.CascadeNode || CascadeNode))._new();
- _st($4)._receiver_(_st(self)._receiver());
- _st($4)._nodes_(_st(_st((smalltalk.Array || Array))._with_(first)).__comma(aCollection));
- $5=_st($4)._yourself();
- $3=$5;
- return $3;
- }, function($ctx1) {$ctx1.fill(self,"cascadeNodeWithMessages:", [aCollection], {first:first}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_index",
- smalltalk.method({
- selector: "index",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@index"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"index", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_index_",
- smalltalk.method({
- selector: "index:",
- fn: function (anInteger){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@index"]=anInteger;
- return self}, function($ctx1) {$ctx1.fill(self,"index:", [anInteger], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_isSendNode",
- smalltalk.method({
- selector: "isSendNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isSendNode", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_nodes",
- smalltalk.method({
- selector: "nodes",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
- $2=_st((smalltalk.Array || Array))._withAll_(_st(self)._arguments());
- _st($2)._add_(_st(self)._receiver());
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"nodes", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_receiver",
- smalltalk.method({
- selector: "receiver",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@receiver"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"receiver", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_receiver_",
- smalltalk.method({
- selector: "receiver:",
- fn: function (aNode){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@receiver"]=aNode;
- return self}, function($ctx1) {$ctx1.fill(self,"receiver:", [aNode], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_selector",
- smalltalk.method({
- selector: "selector",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@selector"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selector", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_selector_",
- smalltalk.method({
- selector: "selector:",
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@selector"]=aString;
- return self}, function($ctx1) {$ctx1.fill(self,"selector:", [aString], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_superSend",
- smalltalk.method({
- selector: "superSend",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@superSend"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=false;
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"superSend", [], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_superSend_",
- smalltalk.method({
- selector: "superSend:",
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@superSend"]=aBoolean;
- return self}, function($ctx1) {$ctx1.fill(self,"superSend:", [aBoolean], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addMethod(
- "_valueForReceiver_",
- smalltalk.method({
- selector: "valueForReceiver:",
- fn: function (anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$5,$4,$6,$1;
- $2=_st((smalltalk.SendNode || SendNode))._new();
- $3=$2;
- $5=_st(self)._receiver();
- if(($receiver = $5) == nil || $receiver == undefined){
- $4=anObject;
- } else {
- $4=_st(_st(self)._receiver())._valueForReceiver_(anObject);
- };
- _st($3)._receiver_($4);
- _st($2)._selector_(_st(self)._selector());
- _st($2)._arguments_(_st(self)._arguments());
- $6=_st($2)._yourself();
- $1=$6;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"valueForReceiver:", [anObject], {}, smalltalk.SendNode)})}
- }),
- smalltalk.SendNode);
- smalltalk.addClass('SequenceNode', smalltalk.Node, ['temps', 'scope'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitSequenceNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.SequenceNode)})}
- }),
- smalltalk.SequenceNode);
- smalltalk.addMethod(
- "_asBlockSequenceNode",
- smalltalk.method({
- selector: "asBlockSequenceNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
- $2=_st((smalltalk.BlockSequenceNode || BlockSequenceNode))._new();
- _st($2)._nodes_(_st(self)._nodes());
- _st($2)._temps_(_st(self)._temps());
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"asBlockSequenceNode", [], {}, smalltalk.SequenceNode)})}
- }),
- smalltalk.SequenceNode);
- smalltalk.addMethod(
- "_scope",
- smalltalk.method({
- selector: "scope",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@scope"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"scope", [], {}, smalltalk.SequenceNode)})}
- }),
- smalltalk.SequenceNode);
- smalltalk.addMethod(
- "_scope_",
- smalltalk.method({
- selector: "scope:",
- fn: function (aLexicalScope){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@scope"]=aLexicalScope;
- return self}, function($ctx1) {$ctx1.fill(self,"scope:", [aLexicalScope], {}, smalltalk.SequenceNode)})}
- }),
- smalltalk.SequenceNode);
- smalltalk.addMethod(
- "_temps",
- smalltalk.method({
- selector: "temps",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@temps"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=[];
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"temps", [], {}, smalltalk.SequenceNode)})}
- }),
- smalltalk.SequenceNode);
- smalltalk.addMethod(
- "_temps_",
- smalltalk.method({
- selector: "temps:",
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@temps"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"temps:", [aCollection], {}, smalltalk.SequenceNode)})}
- }),
- smalltalk.SequenceNode);
- smalltalk.addClass('BlockSequenceNode', smalltalk.SequenceNode, [], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitBlockSequenceNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.BlockSequenceNode)})}
- }),
- smalltalk.BlockSequenceNode);
- smalltalk.addMethod(
- "_isBlockSequenceNode",
- smalltalk.method({
- selector: "isBlockSequenceNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isBlockSequenceNode", [], {}, smalltalk.BlockSequenceNode)})}
- }),
- smalltalk.BlockSequenceNode);
- smalltalk.addClass('ValueNode', smalltalk.Node, ['value'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitValueNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.ValueNode)})}
- }),
- smalltalk.ValueNode);
- smalltalk.addMethod(
- "_isImmutable",
- smalltalk.method({
- selector: "isImmutable",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isImmutable", [], {}, smalltalk.ValueNode)})}
- }),
- smalltalk.ValueNode);
- smalltalk.addMethod(
- "_isValueNode",
- smalltalk.method({
- selector: "isValueNode",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return true;
- }, function($ctx1) {$ctx1.fill(self,"isValueNode", [], {}, smalltalk.ValueNode)})}
- }),
- smalltalk.ValueNode);
- smalltalk.addMethod(
- "_value",
- smalltalk.method({
- selector: "value",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@value"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"value", [], {}, smalltalk.ValueNode)})}
- }),
- smalltalk.ValueNode);
- smalltalk.addMethod(
- "_value_",
- smalltalk.method({
- selector: "value:",
- fn: function (anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@value"]=anObject;
- return self}, function($ctx1) {$ctx1.fill(self,"value:", [anObject], {}, smalltalk.ValueNode)})}
- }),
- smalltalk.ValueNode);
- smalltalk.addClass('VariableNode', smalltalk.ValueNode, ['assigned', 'binding'], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitVariableNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_alias",
- smalltalk.method({
- selector: "alias",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(_st(self)._binding())._alias();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"alias", [], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_assigned",
- smalltalk.method({
- selector: "assigned",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=self["@assigned"];
- if(($receiver = $2) == nil || $receiver == undefined){
- $1=false;
- } else {
- $1=$2;
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"assigned", [], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_assigned_",
- smalltalk.method({
- selector: "assigned:",
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@assigned"]=aBoolean;
- return self}, function($ctx1) {$ctx1.fill(self,"assigned:", [aBoolean], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_beAssigned",
- smalltalk.method({
- selector: "beAssigned",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(_st(self)._binding())._validateAssignment();
- self["@assigned"]=true;
- return self}, function($ctx1) {$ctx1.fill(self,"beAssigned", [], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_binding",
- smalltalk.method({
- selector: "binding",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@binding"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"binding", [], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_binding_",
- smalltalk.method({
- selector: "binding:",
- fn: function (aScopeVar){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@binding"]=aScopeVar;
- return self}, function($ctx1) {$ctx1.fill(self,"binding:", [aScopeVar], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addMethod(
- "_isImmutable",
- smalltalk.method({
- selector: "isImmutable",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return false;
- }, function($ctx1) {$ctx1.fill(self,"isImmutable", [], {}, smalltalk.VariableNode)})}
- }),
- smalltalk.VariableNode);
- smalltalk.addClass('ClassReferenceNode', smalltalk.VariableNode, [], 'Compiler-AST');
- smalltalk.addMethod(
- "_accept_",
- smalltalk.method({
- selector: "accept:",
- fn: function (aVisitor){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(aVisitor)._visitClassReferenceNode_(self);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"accept:", [aVisitor], {}, smalltalk.ClassReferenceNode)})}
- }),
- smalltalk.ClassReferenceNode);
|