1
0

Compiler-Semantic.js 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722
  1. smalltalk.addPackage('Compiler-Semantic', {});
  2. smalltalk.addClass('LexicalScope', smalltalk.Object, ['node', 'instruction', 'temps', 'args', 'outerScope'], 'Compiler-Semantic');
  3. smalltalk.LexicalScope.comment="I represent a lexical scope where variable names are associated with ScopeVars\x0aInstances are used for block scopes. Method scopes are instances of MethodLexicalScope.\x0a\x0aI am attached to a ScopeVar and method/block nodes.\x0aEach context (method/closure) get a fresh scope that inherits from its outer scope."
  4. smalltalk.addMethod(
  5. "_addArg_",
  6. smalltalk.method({
  7. selector: "addArg:",
  8. category: 'adding',
  9. fn: function (aString){
  10. var self=this;
  11. return smalltalk.withContext(function($ctx1) { _st(_st(self)._args())._at_put_(aString,_st((smalltalk.ArgVar || ArgVar))._on_(aString));
  12. _st(_st(_st(self)._args())._at_(aString))._scope_(self);
  13. return self}, self, "addArg:", [aString], smalltalk.LexicalScope)},
  14. args: ["aString"],
  15. source: "addArg: aString\x0a\x09self args at: aString put: (ArgVar on: aString).\x0a\x09(self args at: aString) scope: self",
  16. messageSends: ["at:put:", "on:", "args", "scope:", "at:"],
  17. referencedClasses: ["ArgVar"]
  18. }),
  19. smalltalk.LexicalScope);
  20. smalltalk.addMethod(
  21. "_addTemp_",
  22. smalltalk.method({
  23. selector: "addTemp:",
  24. category: 'adding',
  25. fn: function (aString){
  26. var self=this;
  27. return smalltalk.withContext(function($ctx1) { _st(_st(self)._temps())._at_put_(aString,_st((smalltalk.TempVar || TempVar))._on_(aString));
  28. _st(_st(_st(self)._temps())._at_(aString))._scope_(self);
  29. return self}, self, "addTemp:", [aString], smalltalk.LexicalScope)},
  30. args: ["aString"],
  31. source: "addTemp: aString\x0a\x09self temps at: aString put: (TempVar on: aString).\x0a\x09(self temps at: aString) scope: self",
  32. messageSends: ["at:put:", "on:", "temps", "scope:", "at:"],
  33. referencedClasses: ["TempVar"]
  34. }),
  35. smalltalk.LexicalScope);
  36. smalltalk.addMethod(
  37. "_alias",
  38. smalltalk.method({
  39. selector: "alias",
  40. category: 'accessing',
  41. fn: function (){
  42. var self=this;
  43. return smalltalk.withContext(function($ctx1) { var $1;
  44. $1=_st("$ctx").__comma(_st(_st(self)._scopeLevel())._asString());
  45. return $1;
  46. }, self, "alias", [], smalltalk.LexicalScope)},
  47. args: [],
  48. source: "alias\x0a\x09^ '$ctx', self scopeLevel asString",
  49. messageSends: [",", "asString", "scopeLevel"],
  50. referencedClasses: []
  51. }),
  52. smalltalk.LexicalScope);
  53. smalltalk.addMethod(
  54. "_allVariableNames",
  55. smalltalk.method({
  56. selector: "allVariableNames",
  57. category: 'accessing',
  58. fn: function (){
  59. var self=this;
  60. return smalltalk.withContext(function($ctx1) { var $1;
  61. $1=_st(_st(_st(self)._args())._keys()).__comma(_st(_st(self)._temps())._keys());
  62. return $1;
  63. }, self, "allVariableNames", [], smalltalk.LexicalScope)},
  64. args: [],
  65. source: "allVariableNames\x0a\x09^ self args keys, self temps keys",
  66. messageSends: [",", "keys", "temps", "args"],
  67. referencedClasses: []
  68. }),
  69. smalltalk.LexicalScope);
  70. smalltalk.addMethod(
  71. "_args",
  72. smalltalk.method({
  73. selector: "args",
  74. category: 'accessing',
  75. fn: function (){
  76. var self=this;
  77. return smalltalk.withContext(function($ctx1) { var $1;
  78. if(($receiver = self["@args"]) == nil || $receiver == undefined){
  79. self["@args"]=_st((smalltalk.Dictionary || Dictionary))._new();
  80. $1=self["@args"];
  81. } else {
  82. $1=self["@args"];
  83. };
  84. return $1;
  85. }, self, "args", [], smalltalk.LexicalScope)},
  86. args: [],
  87. source: "args\x0a\x09^ args ifNil: [ args := Dictionary new ]",
  88. messageSends: ["ifNil:", "new"],
  89. referencedClasses: ["Dictionary"]
  90. }),
  91. smalltalk.LexicalScope);
  92. smalltalk.addMethod(
  93. "_bindingFor_",
  94. smalltalk.method({
  95. selector: "bindingFor:",
  96. category: 'accessing',
  97. fn: function (aStringOrNode){
  98. var self=this;
  99. return smalltalk.withContext(function($ctx1) { var $1;
  100. $1=_st(_st(self)._pseudoVars())._at_ifAbsent_(_st(aStringOrNode)._value(),(function(){
  101. return smalltalk.withContext(function($ctx2) { return _st(_st(self)._args())._at_ifAbsent_(_st(aStringOrNode)._value(),(function(){
  102. return smalltalk.withContext(function($ctx3) { return _st(_st(self)._temps())._at_ifAbsent_(_st(aStringOrNode)._value(),(function(){
  103. return smalltalk.withContext(function($ctx4) { return nil;
  104. })}));
  105. })}));
  106. })}));
  107. return $1;
  108. }, self, "bindingFor:", [aStringOrNode], smalltalk.LexicalScope)},
  109. args: ["aStringOrNode"],
  110. source: "bindingFor: aStringOrNode\x0a\x09^ self pseudoVars at: aStringOrNode value ifAbsent: [ \x0a\x09\x09self args at: aStringOrNode value ifAbsent: [\x0a\x09\x09\x09self temps at: aStringOrNode value ifAbsent: [ nil ]]]",
  111. messageSends: ["at:ifAbsent:", "value", "temps", "args", "pseudoVars"],
  112. referencedClasses: []
  113. }),
  114. smalltalk.LexicalScope);
  115. smalltalk.addMethod(
  116. "_canInlineNonLocalReturns",
  117. smalltalk.method({
  118. selector: "canInlineNonLocalReturns",
  119. category: 'testing',
  120. fn: function (){
  121. var self=this;
  122. return smalltalk.withContext(function($ctx1) { var $1;
  123. $1=_st(_st(self)._isInlined())._and_((function(){
  124. return smalltalk.withContext(function($ctx2) { return _st(_st(self)._outerScope())._canInlineNonLocalReturns();
  125. })}));
  126. return $1;
  127. }, self, "canInlineNonLocalReturns", [], smalltalk.LexicalScope)},
  128. args: [],
  129. source: "canInlineNonLocalReturns\x0a\x09^ self isInlined and: [ self outerScope canInlineNonLocalReturns ]",
  130. messageSends: ["and:", "canInlineNonLocalReturns", "outerScope", "isInlined"],
  131. referencedClasses: []
  132. }),
  133. smalltalk.LexicalScope);
  134. smalltalk.addMethod(
  135. "_instruction",
  136. smalltalk.method({
  137. selector: "instruction",
  138. category: 'accessing',
  139. fn: function (){
  140. var self=this;
  141. return smalltalk.withContext(function($ctx1) { return self["@instruction"];
  142. }, self, "instruction", [], smalltalk.LexicalScope)},
  143. args: [],
  144. source: "instruction\x0a\x09^ instruction",
  145. messageSends: [],
  146. referencedClasses: []
  147. }),
  148. smalltalk.LexicalScope);
  149. smalltalk.addMethod(
  150. "_instruction_",
  151. smalltalk.method({
  152. selector: "instruction:",
  153. category: 'accessing',
  154. fn: function (anIRInstruction){
  155. var self=this;
  156. return smalltalk.withContext(function($ctx1) { self["@instruction"]=anIRInstruction;
  157. return self}, self, "instruction:", [anIRInstruction], smalltalk.LexicalScope)},
  158. args: ["anIRInstruction"],
  159. source: "instruction: anIRInstruction\x0a\x09instruction := anIRInstruction",
  160. messageSends: [],
  161. referencedClasses: []
  162. }),
  163. smalltalk.LexicalScope);
  164. smalltalk.addMethod(
  165. "_isBlockScope",
  166. smalltalk.method({
  167. selector: "isBlockScope",
  168. category: 'testing',
  169. fn: function (){
  170. var self=this;
  171. return smalltalk.withContext(function($ctx1) { var $1;
  172. $1=_st(_st(self)._isMethodScope())._not();
  173. return $1;
  174. }, self, "isBlockScope", [], smalltalk.LexicalScope)},
  175. args: [],
  176. source: "isBlockScope\x0a\x09^ self isMethodScope not",
  177. messageSends: ["not", "isMethodScope"],
  178. referencedClasses: []
  179. }),
  180. smalltalk.LexicalScope);
  181. smalltalk.addMethod(
  182. "_isInlined",
  183. smalltalk.method({
  184. selector: "isInlined",
  185. category: 'testing',
  186. fn: function (){
  187. var self=this;
  188. return smalltalk.withContext(function($ctx1) { var $1;
  189. $1=_st(_st(_st(self)._instruction())._notNil())._and_((function(){
  190. return smalltalk.withContext(function($ctx2) { return _st(_st(self)._instruction())._isInlined();
  191. })}));
  192. return $1;
  193. }, self, "isInlined", [], smalltalk.LexicalScope)},
  194. args: [],
  195. source: "isInlined\x0a\x09^ self instruction notNil and: [\x0a \x09self instruction isInlined ]",
  196. messageSends: ["and:", "isInlined", "instruction", "notNil"],
  197. referencedClasses: []
  198. }),
  199. smalltalk.LexicalScope);
  200. smalltalk.addMethod(
  201. "_isMethodScope",
  202. smalltalk.method({
  203. selector: "isMethodScope",
  204. category: 'testing',
  205. fn: function (){
  206. var self=this;
  207. return smalltalk.withContext(function($ctx1) { return false;
  208. }, self, "isMethodScope", [], smalltalk.LexicalScope)},
  209. args: [],
  210. source: "isMethodScope\x0a\x09^ false",
  211. messageSends: [],
  212. referencedClasses: []
  213. }),
  214. smalltalk.LexicalScope);
  215. smalltalk.addMethod(
  216. "_lookupVariable_",
  217. smalltalk.method({
  218. selector: "lookupVariable:",
  219. category: 'accessing',
  220. fn: function (aNode){
  221. var self=this;
  222. return smalltalk.withContext(function($ctx1) { var $1;
  223. $ctx1.lookup=nil;
  224. $ctx1.locals.lookup=_st(self)._bindingFor_(aNode);
  225. if(($receiver = $ctx1.locals.lookup) == nil || $receiver == undefined){
  226. $1=_st(self)._outerScope();
  227. if(($receiver = $1) == nil || $receiver == undefined){
  228. $ctx1.locals.lookup=$1;
  229. } else {
  230. $ctx1.locals.lookup=_st(_st(self)._outerScope())._lookupVariable_(aNode);
  231. };
  232. $ctx1.locals.lookup;
  233. } else {
  234. $ctx1.locals.lookup;
  235. };
  236. return $ctx1.locals.lookup;
  237. }, self, "lookupVariable:", [aNode], smalltalk.LexicalScope)},
  238. args: ["aNode"],
  239. source: "lookupVariable: aNode\x0a\x09| lookup |\x0a\x09lookup := (self bindingFor: aNode).\x0a\x09lookup ifNil: [\x0a\x09\x09lookup := self outerScope ifNotNil: [ \x0a\x09\x09\x09(self outerScope lookupVariable: aNode) ]].\x0a\x09^ lookup",
  240. messageSends: ["bindingFor:", "ifNil:", "ifNotNil:", "lookupVariable:", "outerScope"],
  241. referencedClasses: []
  242. }),
  243. smalltalk.LexicalScope);
  244. smalltalk.addMethod(
  245. "_methodScope",
  246. smalltalk.method({
  247. selector: "methodScope",
  248. category: 'accessing',
  249. fn: function (){
  250. var self=this;
  251. return smalltalk.withContext(function($ctx1) { var $2,$1;
  252. $2=_st(self)._outerScope();
  253. if(($receiver = $2) == nil || $receiver == undefined){
  254. $1=$2;
  255. } else {
  256. $1=_st(_st(self)._outerScope())._methodScope();
  257. };
  258. return $1;
  259. }, self, "methodScope", [], smalltalk.LexicalScope)},
  260. args: [],
  261. source: "methodScope\x0a\x09^ self outerScope ifNotNil: [\x0a\x09\x09self outerScope methodScope ]",
  262. messageSends: ["ifNotNil:", "methodScope", "outerScope"],
  263. referencedClasses: []
  264. }),
  265. smalltalk.LexicalScope);
  266. smalltalk.addMethod(
  267. "_node",
  268. smalltalk.method({
  269. selector: "node",
  270. category: 'accessing',
  271. fn: function (){
  272. var self=this;
  273. return smalltalk.withContext(function($ctx1) { return self["@node"];
  274. }, self, "node", [], smalltalk.LexicalScope)},
  275. args: [],
  276. source: "node\x0a\x09\x22Answer the node in which I am defined\x22\x0a\x09\x0a\x09^ node",
  277. messageSends: [],
  278. referencedClasses: []
  279. }),
  280. smalltalk.LexicalScope);
  281. smalltalk.addMethod(
  282. "_node_",
  283. smalltalk.method({
  284. selector: "node:",
  285. category: 'accessing',
  286. fn: function (aNode){
  287. var self=this;
  288. return smalltalk.withContext(function($ctx1) { self["@node"]=aNode;
  289. return self}, self, "node:", [aNode], smalltalk.LexicalScope)},
  290. args: ["aNode"],
  291. source: "node: aNode\x0a\x09node := aNode",
  292. messageSends: [],
  293. referencedClasses: []
  294. }),
  295. smalltalk.LexicalScope);
  296. smalltalk.addMethod(
  297. "_outerScope",
  298. smalltalk.method({
  299. selector: "outerScope",
  300. category: 'accessing',
  301. fn: function (){
  302. var self=this;
  303. return smalltalk.withContext(function($ctx1) { return self["@outerScope"];
  304. }, self, "outerScope", [], smalltalk.LexicalScope)},
  305. args: [],
  306. source: "outerScope\x0a\x09^ outerScope",
  307. messageSends: [],
  308. referencedClasses: []
  309. }),
  310. smalltalk.LexicalScope);
  311. smalltalk.addMethod(
  312. "_outerScope_",
  313. smalltalk.method({
  314. selector: "outerScope:",
  315. category: 'accessing',
  316. fn: function (aLexicalScope){
  317. var self=this;
  318. return smalltalk.withContext(function($ctx1) { self["@outerScope"]=aLexicalScope;
  319. return self}, self, "outerScope:", [aLexicalScope], smalltalk.LexicalScope)},
  320. args: ["aLexicalScope"],
  321. source: "outerScope: aLexicalScope\x0a\x09outerScope := aLexicalScope",
  322. messageSends: [],
  323. referencedClasses: []
  324. }),
  325. smalltalk.LexicalScope);
  326. smalltalk.addMethod(
  327. "_pseudoVars",
  328. smalltalk.method({
  329. selector: "pseudoVars",
  330. category: 'accessing',
  331. fn: function (){
  332. var self=this;
  333. return smalltalk.withContext(function($ctx1) { var $1;
  334. $1=_st(_st(self)._methodScope())._pseudoVars();
  335. return $1;
  336. }, self, "pseudoVars", [], smalltalk.LexicalScope)},
  337. args: [],
  338. source: "pseudoVars\x0a\x09^ self methodScope pseudoVars",
  339. messageSends: ["pseudoVars", "methodScope"],
  340. referencedClasses: []
  341. }),
  342. smalltalk.LexicalScope);
  343. smalltalk.addMethod(
  344. "_scopeLevel",
  345. smalltalk.method({
  346. selector: "scopeLevel",
  347. category: 'accessing',
  348. fn: function (){
  349. var self=this;
  350. return smalltalk.withContext(function($ctx1) { var $1,$2,$3,$4;
  351. $1=_st(self)._outerScope();
  352. if(($receiver = $1) == nil || $receiver == undefined){
  353. return (1);
  354. } else {
  355. $1;
  356. };
  357. $2=_st(self)._isInlined();
  358. if(smalltalk.assert($2)){
  359. $3=_st(_st(self)._outerScope())._scopeLevel();
  360. return $3;
  361. };
  362. $4=_st(_st(_st(self)._outerScope())._scopeLevel()).__plus((1));
  363. return $4;
  364. }, self, "scopeLevel", [], smalltalk.LexicalScope)},
  365. args: [],
  366. source: "scopeLevel\x0a\x09self outerScope ifNil: [ ^ 1 ].\x0a\x09self isInlined ifTrue: [ ^ self outerScope scopeLevel ].\x0a \x0a\x09^ self outerScope scopeLevel + 1",
  367. messageSends: ["ifNil:", "outerScope", "ifTrue:", "scopeLevel", "isInlined", "+"],
  368. referencedClasses: []
  369. }),
  370. smalltalk.LexicalScope);
  371. smalltalk.addMethod(
  372. "_temps",
  373. smalltalk.method({
  374. selector: "temps",
  375. category: 'accessing',
  376. fn: function (){
  377. var self=this;
  378. return smalltalk.withContext(function($ctx1) { var $1;
  379. if(($receiver = self["@temps"]) == nil || $receiver == undefined){
  380. self["@temps"]=_st((smalltalk.Dictionary || Dictionary))._new();
  381. $1=self["@temps"];
  382. } else {
  383. $1=self["@temps"];
  384. };
  385. return $1;
  386. }, self, "temps", [], smalltalk.LexicalScope)},
  387. args: [],
  388. source: "temps\x0a\x09^ temps ifNil: [ temps := Dictionary new ]",
  389. messageSends: ["ifNil:", "new"],
  390. referencedClasses: ["Dictionary"]
  391. }),
  392. smalltalk.LexicalScope);
  393. smalltalk.addClass('MethodLexicalScope', smalltalk.LexicalScope, ['iVars', 'pseudoVars', 'unknownVariables', 'localReturn', 'nonLocalReturns'], 'Compiler-Semantic');
  394. smalltalk.MethodLexicalScope.comment="I represent a method scope."
  395. smalltalk.addMethod(
  396. "_addIVar_",
  397. smalltalk.method({
  398. selector: "addIVar:",
  399. category: 'adding',
  400. fn: function (aString){
  401. var self=this;
  402. return smalltalk.withContext(function($ctx1) { _st(_st(self)._iVars())._at_put_(aString,_st((smalltalk.InstanceVar || InstanceVar))._on_(aString));
  403. _st(_st(_st(self)._iVars())._at_(aString))._scope_(self);
  404. return self}, self, "addIVar:", [aString], smalltalk.MethodLexicalScope)},
  405. args: ["aString"],
  406. source: "addIVar: aString\x0a\x09self iVars at: aString put: (InstanceVar on: aString).\x0a\x09(self iVars at: aString) scope: self",
  407. messageSends: ["at:put:", "on:", "iVars", "scope:", "at:"],
  408. referencedClasses: ["InstanceVar"]
  409. }),
  410. smalltalk.MethodLexicalScope);
  411. smalltalk.addMethod(
  412. "_addNonLocalReturn_",
  413. smalltalk.method({
  414. selector: "addNonLocalReturn:",
  415. category: 'adding',
  416. fn: function (aScope){
  417. var self=this;
  418. return smalltalk.withContext(function($ctx1) { _st(_st(self)._nonLocalReturns())._add_(aScope);
  419. return self}, self, "addNonLocalReturn:", [aScope], smalltalk.MethodLexicalScope)},
  420. args: ["aScope"],
  421. source: "addNonLocalReturn: aScope\x0a\x09self nonLocalReturns add: aScope",
  422. messageSends: ["add:", "nonLocalReturns"],
  423. referencedClasses: []
  424. }),
  425. smalltalk.MethodLexicalScope);
  426. smalltalk.addMethod(
  427. "_allVariableNames",
  428. smalltalk.method({
  429. selector: "allVariableNames",
  430. category: 'accessing',
  431. fn: function (){
  432. var self=this;
  433. return smalltalk.withContext(function($ctx1) { var $1;
  434. $1=_st(smalltalk.LexicalScope.fn.prototype._allVariableNames.apply(_st(self), [])).__comma(_st(_st(self)._iVars())._keys());
  435. return $1;
  436. }, self, "allVariableNames", [], smalltalk.MethodLexicalScope)},
  437. args: [],
  438. source: "allVariableNames\x0a\x09^ super allVariableNames, self iVars keys",
  439. messageSends: [",", "keys", "iVars", "allVariableNames"],
  440. referencedClasses: []
  441. }),
  442. smalltalk.MethodLexicalScope);
  443. smalltalk.addMethod(
  444. "_bindingFor_",
  445. smalltalk.method({
  446. selector: "bindingFor:",
  447. category: 'accessing',
  448. fn: function (aNode){
  449. var self=this;
  450. return smalltalk.withContext(function($ctx1) { var $2,$1;
  451. $2=smalltalk.LexicalScope.fn.prototype._bindingFor_.apply(_st(self), [aNode]);
  452. if(($receiver = $2) == nil || $receiver == undefined){
  453. $1=_st(_st(self)._iVars())._at_ifAbsent_(_st(aNode)._value(),(function(){
  454. return smalltalk.withContext(function($ctx2) { return nil;
  455. })}));
  456. } else {
  457. $1=$2;
  458. };
  459. return $1;
  460. }, self, "bindingFor:", [aNode], smalltalk.MethodLexicalScope)},
  461. args: ["aNode"],
  462. source: "bindingFor: aNode\x0a\x09^ (super bindingFor: aNode) ifNil: [\x0a\x09\x09self iVars at: aNode value ifAbsent: [ nil ]]",
  463. messageSends: ["ifNil:", "at:ifAbsent:", "value", "iVars", "bindingFor:"],
  464. referencedClasses: []
  465. }),
  466. smalltalk.MethodLexicalScope);
  467. smalltalk.addMethod(
  468. "_canInlineNonLocalReturns",
  469. smalltalk.method({
  470. selector: "canInlineNonLocalReturns",
  471. category: 'testing',
  472. fn: function (){
  473. var self=this;
  474. return smalltalk.withContext(function($ctx1) { return true;
  475. }, self, "canInlineNonLocalReturns", [], smalltalk.MethodLexicalScope)},
  476. args: [],
  477. source: "canInlineNonLocalReturns\x0a\x09^ true",
  478. messageSends: [],
  479. referencedClasses: []
  480. }),
  481. smalltalk.MethodLexicalScope);
  482. smalltalk.addMethod(
  483. "_hasLocalReturn",
  484. smalltalk.method({
  485. selector: "hasLocalReturn",
  486. category: 'testing',
  487. fn: function (){
  488. var self=this;
  489. return smalltalk.withContext(function($ctx1) { var $1;
  490. $1=_st(self)._localReturn();
  491. return $1;
  492. }, self, "hasLocalReturn", [], smalltalk.MethodLexicalScope)},
  493. args: [],
  494. source: "hasLocalReturn\x0a\x09^ self localReturn",
  495. messageSends: ["localReturn"],
  496. referencedClasses: []
  497. }),
  498. smalltalk.MethodLexicalScope);
  499. smalltalk.addMethod(
  500. "_hasNonLocalReturn",
  501. smalltalk.method({
  502. selector: "hasNonLocalReturn",
  503. category: 'testing',
  504. fn: function (){
  505. var self=this;
  506. return smalltalk.withContext(function($ctx1) { var $1;
  507. $1=_st(_st(self)._nonLocalReturns())._notEmpty();
  508. return $1;
  509. }, self, "hasNonLocalReturn", [], smalltalk.MethodLexicalScope)},
  510. args: [],
  511. source: "hasNonLocalReturn\x0a\x09^ self nonLocalReturns notEmpty",
  512. messageSends: ["notEmpty", "nonLocalReturns"],
  513. referencedClasses: []
  514. }),
  515. smalltalk.MethodLexicalScope);
  516. smalltalk.addMethod(
  517. "_iVars",
  518. smalltalk.method({
  519. selector: "iVars",
  520. category: 'accessing',
  521. fn: function (){
  522. var self=this;
  523. return smalltalk.withContext(function($ctx1) { var $1;
  524. if(($receiver = self["@iVars"]) == nil || $receiver == undefined){
  525. self["@iVars"]=_st((smalltalk.Dictionary || Dictionary))._new();
  526. $1=self["@iVars"];
  527. } else {
  528. $1=self["@iVars"];
  529. };
  530. return $1;
  531. }, self, "iVars", [], smalltalk.MethodLexicalScope)},
  532. args: [],
  533. source: "iVars\x0a\x09^ iVars ifNil: [ iVars := Dictionary new ]",
  534. messageSends: ["ifNil:", "new"],
  535. referencedClasses: ["Dictionary"]
  536. }),
  537. smalltalk.MethodLexicalScope);
  538. smalltalk.addMethod(
  539. "_isMethodScope",
  540. smalltalk.method({
  541. selector: "isMethodScope",
  542. category: 'testing',
  543. fn: function (){
  544. var self=this;
  545. return smalltalk.withContext(function($ctx1) { return true;
  546. }, self, "isMethodScope", [], smalltalk.MethodLexicalScope)},
  547. args: [],
  548. source: "isMethodScope\x0a\x09^ true",
  549. messageSends: [],
  550. referencedClasses: []
  551. }),
  552. smalltalk.MethodLexicalScope);
  553. smalltalk.addMethod(
  554. "_localReturn",
  555. smalltalk.method({
  556. selector: "localReturn",
  557. category: 'accessing',
  558. fn: function (){
  559. var self=this;
  560. return smalltalk.withContext(function($ctx1) { var $1;
  561. if(($receiver = self["@localReturn"]) == nil || $receiver == undefined){
  562. $1=false;
  563. } else {
  564. $1=self["@localReturn"];
  565. };
  566. return $1;
  567. }, self, "localReturn", [], smalltalk.MethodLexicalScope)},
  568. args: [],
  569. source: "localReturn\x0a\x09^ localReturn ifNil: [ false ]",
  570. messageSends: ["ifNil:"],
  571. referencedClasses: []
  572. }),
  573. smalltalk.MethodLexicalScope);
  574. smalltalk.addMethod(
  575. "_localReturn_",
  576. smalltalk.method({
  577. selector: "localReturn:",
  578. category: 'accessing',
  579. fn: function (aBoolean){
  580. var self=this;
  581. return smalltalk.withContext(function($ctx1) { self["@localReturn"]=aBoolean;
  582. return self}, self, "localReturn:", [aBoolean], smalltalk.MethodLexicalScope)},
  583. args: ["aBoolean"],
  584. source: "localReturn: aBoolean\x0a\x09localReturn := aBoolean",
  585. messageSends: [],
  586. referencedClasses: []
  587. }),
  588. smalltalk.MethodLexicalScope);
  589. smalltalk.addMethod(
  590. "_methodScope",
  591. smalltalk.method({
  592. selector: "methodScope",
  593. category: 'accessing',
  594. fn: function (){
  595. var self=this;
  596. return smalltalk.withContext(function($ctx1) { return self;
  597. }, self, "methodScope", [], smalltalk.MethodLexicalScope)},
  598. args: [],
  599. source: "methodScope\x0a\x09^ self",
  600. messageSends: [],
  601. referencedClasses: []
  602. }),
  603. smalltalk.MethodLexicalScope);
  604. smalltalk.addMethod(
  605. "_nonLocalReturns",
  606. smalltalk.method({
  607. selector: "nonLocalReturns",
  608. category: 'accessing',
  609. fn: function (){
  610. var self=this;
  611. return smalltalk.withContext(function($ctx1) { var $1;
  612. if(($receiver = self["@nonLocalReturns"]) == nil || $receiver == undefined){
  613. self["@nonLocalReturns"]=_st((smalltalk.OrderedCollection || OrderedCollection))._new();
  614. $1=self["@nonLocalReturns"];
  615. } else {
  616. $1=self["@nonLocalReturns"];
  617. };
  618. return $1;
  619. }, self, "nonLocalReturns", [], smalltalk.MethodLexicalScope)},
  620. args: [],
  621. source: "nonLocalReturns\x0a\x09^ nonLocalReturns ifNil: [ nonLocalReturns := OrderedCollection new ]",
  622. messageSends: ["ifNil:", "new"],
  623. referencedClasses: ["OrderedCollection"]
  624. }),
  625. smalltalk.MethodLexicalScope);
  626. smalltalk.addMethod(
  627. "_pseudoVars",
  628. smalltalk.method({
  629. selector: "pseudoVars",
  630. category: 'accessing',
  631. fn: function (){
  632. var self=this;
  633. return smalltalk.withContext(function($ctx1) { var $1,$2;
  634. if(($receiver = self["@pseudoVars"]) == nil || $receiver == undefined){
  635. self["@pseudoVars"]=_st((smalltalk.Dictionary || Dictionary))._new();
  636. self["@pseudoVars"];
  637. _st(_st(_st((smalltalk.Smalltalk || Smalltalk))._current())._pseudoVariableNames())._do_((function(each){
  638. return smalltalk.withContext(function($ctx2) { $1=_st((smalltalk.PseudoVar || PseudoVar))._on_(each);
  639. _st($1)._scope_(_st(self)._methodScope());
  640. $2=_st($1)._yourself();
  641. return _st(self["@pseudoVars"])._at_put_(each,$2);
  642. })}));
  643. } else {
  644. self["@pseudoVars"];
  645. };
  646. return self["@pseudoVars"];
  647. }, self, "pseudoVars", [], smalltalk.MethodLexicalScope)},
  648. args: [],
  649. source: "pseudoVars\x0a\x09pseudoVars ifNil: [\x0a\x09\x09pseudoVars := Dictionary new.\x0a\x09\x09Smalltalk current pseudoVariableNames do: [ :each |\x0a\x09\x09\x09pseudoVars at: each put: ((PseudoVar on: each)\x0a\x09\x09\x09\x09scope: self methodScope;\x0a\x09\x09\x09\x09yourself) ]].\x0a\x09^ pseudoVars",
  650. messageSends: ["ifNil:", "new", "do:", "at:put:", "scope:", "methodScope", "on:", "yourself", "pseudoVariableNames", "current"],
  651. referencedClasses: ["Dictionary", "PseudoVar", "Smalltalk"]
  652. }),
  653. smalltalk.MethodLexicalScope);
  654. smalltalk.addMethod(
  655. "_removeNonLocalReturn_",
  656. smalltalk.method({
  657. selector: "removeNonLocalReturn:",
  658. category: 'adding',
  659. fn: function (aScope){
  660. var self=this;
  661. return smalltalk.withContext(function($ctx1) { _st(_st(self)._nonLocalReturns())._remove_ifAbsent_(aScope,(function(){
  662. return smalltalk.withContext(function($ctx2) { })}));
  663. return self}, self, "removeNonLocalReturn:", [aScope], smalltalk.MethodLexicalScope)},
  664. args: ["aScope"],
  665. source: "removeNonLocalReturn: aScope\x0a\x09self nonLocalReturns remove: aScope ifAbsent: []",
  666. messageSends: ["remove:ifAbsent:", "nonLocalReturns"],
  667. referencedClasses: []
  668. }),
  669. smalltalk.MethodLexicalScope);
  670. smalltalk.addMethod(
  671. "_unknownVariables",
  672. smalltalk.method({
  673. selector: "unknownVariables",
  674. category: 'accessing',
  675. fn: function (){
  676. var self=this;
  677. return smalltalk.withContext(function($ctx1) { var $1;
  678. if(($receiver = self["@unknownVariables"]) == nil || $receiver == undefined){
  679. self["@unknownVariables"]=_st((smalltalk.OrderedCollection || OrderedCollection))._new();
  680. $1=self["@unknownVariables"];
  681. } else {
  682. $1=self["@unknownVariables"];
  683. };
  684. return $1;
  685. }, self, "unknownVariables", [], smalltalk.MethodLexicalScope)},
  686. args: [],
  687. source: "unknownVariables\x0a\x09^ unknownVariables ifNil: [ unknownVariables := OrderedCollection new ]",
  688. messageSends: ["ifNil:", "new"],
  689. referencedClasses: ["OrderedCollection"]
  690. }),
  691. smalltalk.MethodLexicalScope);
  692. smalltalk.addClass('ScopeVar', smalltalk.Object, ['scope', 'name'], 'Compiler-Semantic');
  693. smalltalk.ScopeVar.comment="I am an entry in a LexicalScope that gets associated with variable nodes of the same name. \x0aThere are 4 different subclasses of vars: temp vars, local vars, args, and unknown/global vars."
  694. smalltalk.addMethod(
  695. "_alias",
  696. smalltalk.method({
  697. selector: "alias",
  698. category: 'accessing',
  699. fn: function (){
  700. var self=this;
  701. return smalltalk.withContext(function($ctx1) { var $1;
  702. $1=_st(_st(self)._name())._asVariableName();
  703. return $1;
  704. }, self, "alias", [], smalltalk.ScopeVar)},
  705. args: [],
  706. source: "alias\x0a\x09^ self name asVariableName",
  707. messageSends: ["asVariableName", "name"],
  708. referencedClasses: []
  709. }),
  710. smalltalk.ScopeVar);
  711. smalltalk.addMethod(
  712. "_isArgVar",
  713. smalltalk.method({
  714. selector: "isArgVar",
  715. category: 'testing',
  716. fn: function (){
  717. var self=this;
  718. return smalltalk.withContext(function($ctx1) { return false;
  719. }, self, "isArgVar", [], smalltalk.ScopeVar)},
  720. args: [],
  721. source: "isArgVar\x0a\x09^ false",
  722. messageSends: [],
  723. referencedClasses: []
  724. }),
  725. smalltalk.ScopeVar);
  726. smalltalk.addMethod(
  727. "_isClassRefVar",
  728. smalltalk.method({
  729. selector: "isClassRefVar",
  730. category: 'testing',
  731. fn: function (){
  732. var self=this;
  733. return smalltalk.withContext(function($ctx1) { return false;
  734. }, self, "isClassRefVar", [], smalltalk.ScopeVar)},
  735. args: [],
  736. source: "isClassRefVar\x0a\x09^ false",
  737. messageSends: [],
  738. referencedClasses: []
  739. }),
  740. smalltalk.ScopeVar);
  741. smalltalk.addMethod(
  742. "_isInstanceVar",
  743. smalltalk.method({
  744. selector: "isInstanceVar",
  745. category: 'testing',
  746. fn: function (){
  747. var self=this;
  748. return smalltalk.withContext(function($ctx1) { return false;
  749. }, self, "isInstanceVar", [], smalltalk.ScopeVar)},
  750. args: [],
  751. source: "isInstanceVar\x0a\x09^ false",
  752. messageSends: [],
  753. referencedClasses: []
  754. }),
  755. smalltalk.ScopeVar);
  756. smalltalk.addMethod(
  757. "_isPseudoVar",
  758. smalltalk.method({
  759. selector: "isPseudoVar",
  760. category: 'testing',
  761. fn: function (){
  762. var self=this;
  763. return smalltalk.withContext(function($ctx1) { return false;
  764. }, self, "isPseudoVar", [], smalltalk.ScopeVar)},
  765. args: [],
  766. source: "isPseudoVar\x0a\x09^ false",
  767. messageSends: [],
  768. referencedClasses: []
  769. }),
  770. smalltalk.ScopeVar);
  771. smalltalk.addMethod(
  772. "_isTempVar",
  773. smalltalk.method({
  774. selector: "isTempVar",
  775. category: 'testing',
  776. fn: function (){
  777. var self=this;
  778. return smalltalk.withContext(function($ctx1) { return false;
  779. }, self, "isTempVar", [], smalltalk.ScopeVar)},
  780. args: [],
  781. source: "isTempVar\x0a\x09^ false",
  782. messageSends: [],
  783. referencedClasses: []
  784. }),
  785. smalltalk.ScopeVar);
  786. smalltalk.addMethod(
  787. "_isUnknownVar",
  788. smalltalk.method({
  789. selector: "isUnknownVar",
  790. category: 'testing',
  791. fn: function (){
  792. var self=this;
  793. return smalltalk.withContext(function($ctx1) { return false;
  794. }, self, "isUnknownVar", [], smalltalk.ScopeVar)},
  795. args: [],
  796. source: "isUnknownVar\x0a\x09^ false",
  797. messageSends: [],
  798. referencedClasses: []
  799. }),
  800. smalltalk.ScopeVar);
  801. smalltalk.addMethod(
  802. "_name",
  803. smalltalk.method({
  804. selector: "name",
  805. category: 'accessing',
  806. fn: function (){
  807. var self=this;
  808. return smalltalk.withContext(function($ctx1) { return self["@name"];
  809. }, self, "name", [], smalltalk.ScopeVar)},
  810. args: [],
  811. source: "name\x0a\x09^ name",
  812. messageSends: [],
  813. referencedClasses: []
  814. }),
  815. smalltalk.ScopeVar);
  816. smalltalk.addMethod(
  817. "_name_",
  818. smalltalk.method({
  819. selector: "name:",
  820. category: 'accessing',
  821. fn: function (aString){
  822. var self=this;
  823. return smalltalk.withContext(function($ctx1) { self["@name"]=aString;
  824. return self}, self, "name:", [aString], smalltalk.ScopeVar)},
  825. args: ["aString"],
  826. source: "name: aString\x0a\x09name := aString",
  827. messageSends: [],
  828. referencedClasses: []
  829. }),
  830. smalltalk.ScopeVar);
  831. smalltalk.addMethod(
  832. "_scope",
  833. smalltalk.method({
  834. selector: "scope",
  835. category: 'accessing',
  836. fn: function (){
  837. var self=this;
  838. return smalltalk.withContext(function($ctx1) { return self["@scope"];
  839. }, self, "scope", [], smalltalk.ScopeVar)},
  840. args: [],
  841. source: "scope\x0a\x09^ scope",
  842. messageSends: [],
  843. referencedClasses: []
  844. }),
  845. smalltalk.ScopeVar);
  846. smalltalk.addMethod(
  847. "_scope_",
  848. smalltalk.method({
  849. selector: "scope:",
  850. category: 'accessing',
  851. fn: function (aScope){
  852. var self=this;
  853. return smalltalk.withContext(function($ctx1) { self["@scope"]=aScope;
  854. return self}, self, "scope:", [aScope], smalltalk.ScopeVar)},
  855. args: ["aScope"],
  856. source: "scope: aScope\x0a\x09scope := aScope",
  857. messageSends: [],
  858. referencedClasses: []
  859. }),
  860. smalltalk.ScopeVar);
  861. smalltalk.addMethod(
  862. "_validateAssignment",
  863. smalltalk.method({
  864. selector: "validateAssignment",
  865. category: 'testing',
  866. fn: function (){
  867. var self=this;
  868. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  869. $1=_st(_st(self)._isArgVar())._or_((function(){
  870. return smalltalk.withContext(function($ctx2) { return _st(self)._isPseudoVar();
  871. })}));
  872. if(smalltalk.assert($1)){
  873. $2=_st((smalltalk.InvalidAssignmentError || InvalidAssignmentError))._new();
  874. _st($2)._variableName_(_st(self)._name());
  875. $3=_st($2)._signal();
  876. $3;
  877. };
  878. return self}, self, "validateAssignment", [], smalltalk.ScopeVar)},
  879. args: [],
  880. source: "validateAssignment\x0a\x09(self isArgVar or: [ self isPseudoVar ]) ifTrue: [\x0a\x09\x09InvalidAssignmentError new\x0a\x09\x09\x09variableName: self name;\x0a\x09\x09\x09signal]",
  881. messageSends: ["ifTrue:", "variableName:", "name", "new", "signal", "or:", "isPseudoVar", "isArgVar"],
  882. referencedClasses: ["InvalidAssignmentError"]
  883. }),
  884. smalltalk.ScopeVar);
  885. smalltalk.addMethod(
  886. "_on_",
  887. smalltalk.method({
  888. selector: "on:",
  889. category: 'instance creation',
  890. fn: function (aString){
  891. var self=this;
  892. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  893. $2=_st(self)._new();
  894. _st($2)._name_(aString);
  895. $3=_st($2)._yourself();
  896. $1=$3;
  897. return $1;
  898. }, self, "on:", [aString], smalltalk.ScopeVar.klass)},
  899. args: ["aString"],
  900. source: "on: aString\x0a\x09^ self new \x0a\x09\x09name: aString;\x0a\x09\x09yourself",
  901. messageSends: ["name:", "new", "yourself"],
  902. referencedClasses: []
  903. }),
  904. smalltalk.ScopeVar.klass);
  905. smalltalk.addClass('AliasVar', smalltalk.ScopeVar, ['node'], 'Compiler-Semantic');
  906. smalltalk.AliasVar.comment="I am an internally defined variable by the compiler"
  907. smalltalk.addMethod(
  908. "_node",
  909. smalltalk.method({
  910. selector: "node",
  911. category: 'accessing',
  912. fn: function (){
  913. var self=this;
  914. return smalltalk.withContext(function($ctx1) { return self["@node"];
  915. }, self, "node", [], smalltalk.AliasVar)},
  916. args: [],
  917. source: "node\x0a\x09^ node",
  918. messageSends: [],
  919. referencedClasses: []
  920. }),
  921. smalltalk.AliasVar);
  922. smalltalk.addMethod(
  923. "_node_",
  924. smalltalk.method({
  925. selector: "node:",
  926. category: 'accessing',
  927. fn: function (aNode){
  928. var self=this;
  929. return smalltalk.withContext(function($ctx1) { self["@node"]=aNode;
  930. return self}, self, "node:", [aNode], smalltalk.AliasVar)},
  931. args: ["aNode"],
  932. source: "node: aNode\x0a\x09node := aNode",
  933. messageSends: [],
  934. referencedClasses: []
  935. }),
  936. smalltalk.AliasVar);
  937. smalltalk.addClass('ArgVar', smalltalk.ScopeVar, [], 'Compiler-Semantic');
  938. smalltalk.ArgVar.comment="I am an argument of a method or block."
  939. smalltalk.addMethod(
  940. "_isArgVar",
  941. smalltalk.method({
  942. selector: "isArgVar",
  943. category: 'testing',
  944. fn: function (){
  945. var self=this;
  946. return smalltalk.withContext(function($ctx1) { return true;
  947. }, self, "isArgVar", [], smalltalk.ArgVar)},
  948. args: [],
  949. source: "isArgVar\x0a\x09^ true",
  950. messageSends: [],
  951. referencedClasses: []
  952. }),
  953. smalltalk.ArgVar);
  954. smalltalk.addClass('ClassRefVar', smalltalk.ScopeVar, [], 'Compiler-Semantic');
  955. smalltalk.ClassRefVar.comment="I am an class reference variable"
  956. smalltalk.addMethod(
  957. "_alias",
  958. smalltalk.method({
  959. selector: "alias",
  960. category: 'accessing',
  961. fn: function (){
  962. var self=this;
  963. return smalltalk.withContext(function($ctx1) { var $1;
  964. $1=_st(_st(_st(_st("(smalltalk.").__comma(_st(self)._name())).__comma(" || ")).__comma(_st(self)._name())).__comma(")");
  965. return $1;
  966. }, self, "alias", [], smalltalk.ClassRefVar)},
  967. args: [],
  968. source: "alias\x0a\x09^ '(smalltalk.', self name, ' || ', self name, ')'",
  969. messageSends: [",", "name"],
  970. referencedClasses: []
  971. }),
  972. smalltalk.ClassRefVar);
  973. smalltalk.addMethod(
  974. "_isClassRefVar",
  975. smalltalk.method({
  976. selector: "isClassRefVar",
  977. category: 'testing',
  978. fn: function (){
  979. var self=this;
  980. return smalltalk.withContext(function($ctx1) { return true;
  981. }, self, "isClassRefVar", [], smalltalk.ClassRefVar)},
  982. args: [],
  983. source: "isClassRefVar\x0a\x09^ true",
  984. messageSends: [],
  985. referencedClasses: []
  986. }),
  987. smalltalk.ClassRefVar);
  988. smalltalk.addClass('InstanceVar', smalltalk.ScopeVar, [], 'Compiler-Semantic');
  989. smalltalk.InstanceVar.comment="I am an instance variable of a method or block."
  990. smalltalk.addMethod(
  991. "_alias",
  992. smalltalk.method({
  993. selector: "alias",
  994. category: 'testing',
  995. fn: function (){
  996. var self=this;
  997. return smalltalk.withContext(function($ctx1) { var $1;
  998. $1=_st(_st("self[\x22@").__comma(_st(self)._name())).__comma("\x22]");
  999. return $1;
  1000. }, self, "alias", [], smalltalk.InstanceVar)},
  1001. args: [],
  1002. source: "alias\x0a\x09^ 'self[\x22@', self name, '\x22]'",
  1003. messageSends: [",", "name"],
  1004. referencedClasses: []
  1005. }),
  1006. smalltalk.InstanceVar);
  1007. smalltalk.addMethod(
  1008. "_isInstanceVar",
  1009. smalltalk.method({
  1010. selector: "isInstanceVar",
  1011. category: 'testing',
  1012. fn: function (){
  1013. var self=this;
  1014. return smalltalk.withContext(function($ctx1) { return true;
  1015. }, self, "isInstanceVar", [], smalltalk.InstanceVar)},
  1016. args: [],
  1017. source: "isInstanceVar\x0a\x09^ true",
  1018. messageSends: [],
  1019. referencedClasses: []
  1020. }),
  1021. smalltalk.InstanceVar);
  1022. smalltalk.addClass('PseudoVar', smalltalk.ScopeVar, [], 'Compiler-Semantic');
  1023. smalltalk.PseudoVar.comment="I am an pseudo variable.\x0a\x0aThe five Smalltalk pseudo variables are: 'self', 'super', 'nil', 'true' and 'false'"
  1024. smalltalk.addMethod(
  1025. "_alias",
  1026. smalltalk.method({
  1027. selector: "alias",
  1028. category: 'accessing',
  1029. fn: function (){
  1030. var self=this;
  1031. return smalltalk.withContext(function($ctx1) { var $1;
  1032. $1=_st(self)._name();
  1033. return $1;
  1034. }, self, "alias", [], smalltalk.PseudoVar)},
  1035. args: [],
  1036. source: "alias\x0a\x09^ self name",
  1037. messageSends: ["name"],
  1038. referencedClasses: []
  1039. }),
  1040. smalltalk.PseudoVar);
  1041. smalltalk.addMethod(
  1042. "_isPseudoVar",
  1043. smalltalk.method({
  1044. selector: "isPseudoVar",
  1045. category: 'testing',
  1046. fn: function (){
  1047. var self=this;
  1048. return smalltalk.withContext(function($ctx1) { return true;
  1049. }, self, "isPseudoVar", [], smalltalk.PseudoVar)},
  1050. args: [],
  1051. source: "isPseudoVar\x0a\x09^ true",
  1052. messageSends: [],
  1053. referencedClasses: []
  1054. }),
  1055. smalltalk.PseudoVar);
  1056. smalltalk.addClass('TempVar', smalltalk.ScopeVar, [], 'Compiler-Semantic');
  1057. smalltalk.TempVar.comment="I am an temporary variable of a method or block."
  1058. smalltalk.addMethod(
  1059. "_alias",
  1060. smalltalk.method({
  1061. selector: "alias",
  1062. category: 'accessing',
  1063. fn: function (){
  1064. var self=this;
  1065. return smalltalk.withContext(function($ctx1) { var $1;
  1066. $1=_st(_st(_st(_st(self)._scope())._alias()).__comma(".locals.")).__comma(smalltalk.ScopeVar.fn.prototype._alias.apply(_st(self), []));
  1067. return $1;
  1068. }, self, "alias", [], smalltalk.TempVar)},
  1069. args: [],
  1070. source: "alias\x0a\x09^ self scope alias, '.locals.', super alias",
  1071. messageSends: [",", "alias", "scope"],
  1072. referencedClasses: []
  1073. }),
  1074. smalltalk.TempVar);
  1075. smalltalk.addMethod(
  1076. "_isTempVar",
  1077. smalltalk.method({
  1078. selector: "isTempVar",
  1079. category: 'testing',
  1080. fn: function (){
  1081. var self=this;
  1082. return smalltalk.withContext(function($ctx1) { return true;
  1083. }, self, "isTempVar", [], smalltalk.TempVar)},
  1084. args: [],
  1085. source: "isTempVar\x0a\x09^ true",
  1086. messageSends: [],
  1087. referencedClasses: []
  1088. }),
  1089. smalltalk.TempVar);
  1090. smalltalk.addClass('UnknownVar', smalltalk.ScopeVar, [], 'Compiler-Semantic');
  1091. smalltalk.UnknownVar.comment="I am an unknown variable. Amber uses unknown variables as JavaScript globals"
  1092. smalltalk.addMethod(
  1093. "_isUnknownVar",
  1094. smalltalk.method({
  1095. selector: "isUnknownVar",
  1096. category: 'testing',
  1097. fn: function (){
  1098. var self=this;
  1099. return smalltalk.withContext(function($ctx1) { return true;
  1100. }, self, "isUnknownVar", [], smalltalk.UnknownVar)},
  1101. args: [],
  1102. source: "isUnknownVar\x0a\x09^ true",
  1103. messageSends: [],
  1104. referencedClasses: []
  1105. }),
  1106. smalltalk.UnknownVar);
  1107. smalltalk.addClass('SemanticAnalyzer', smalltalk.NodeVisitor, ['currentScope', 'theClass', 'classReferences', 'messageSends', 'superSends'], 'Compiler-Semantic');
  1108. smalltalk.SemanticAnalyzer.comment="I semantically analyze the abstract syntax tree and annotate it with informations such as non local returns and variable scopes."
  1109. smalltalk.addMethod(
  1110. "_classReferences",
  1111. smalltalk.method({
  1112. selector: "classReferences",
  1113. category: 'accessing',
  1114. fn: function (){
  1115. var self=this;
  1116. return smalltalk.withContext(function($ctx1) { var $1;
  1117. if(($receiver = self["@classReferences"]) == nil || $receiver == undefined){
  1118. self["@classReferences"]=_st((smalltalk.Set || Set))._new();
  1119. $1=self["@classReferences"];
  1120. } else {
  1121. $1=self["@classReferences"];
  1122. };
  1123. return $1;
  1124. }, self, "classReferences", [], smalltalk.SemanticAnalyzer)},
  1125. args: [],
  1126. source: "classReferences\x0a\x09^ classReferences ifNil: [ classReferences := Set new ]",
  1127. messageSends: ["ifNil:", "new"],
  1128. referencedClasses: ["Set"]
  1129. }),
  1130. smalltalk.SemanticAnalyzer);
  1131. smalltalk.addMethod(
  1132. "_errorShadowingVariable_",
  1133. smalltalk.method({
  1134. selector: "errorShadowingVariable:",
  1135. category: 'error handling',
  1136. fn: function (aString){
  1137. var self=this;
  1138. return smalltalk.withContext(function($ctx1) { var $1,$2;
  1139. $1=_st((smalltalk.ShadowingVariableError || ShadowingVariableError))._new();
  1140. _st($1)._variableName_(aString);
  1141. $2=_st($1)._signal();
  1142. return self}, self, "errorShadowingVariable:", [aString], smalltalk.SemanticAnalyzer)},
  1143. args: ["aString"],
  1144. source: "errorShadowingVariable: aString\x0a\x09ShadowingVariableError new\x0a\x09\x09variableName: aString;\x0a\x09\x09signal",
  1145. messageSends: ["variableName:", "new", "signal"],
  1146. referencedClasses: ["ShadowingVariableError"]
  1147. }),
  1148. smalltalk.SemanticAnalyzer);
  1149. smalltalk.addMethod(
  1150. "_errorUnknownVariable_",
  1151. smalltalk.method({
  1152. selector: "errorUnknownVariable:",
  1153. category: 'error handling',
  1154. fn: function (aNode){
  1155. var self=this;
  1156. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  1157. $1=_st(self)._isVariableGloballyUndefined_(_st(aNode)._value());
  1158. if(smalltalk.assert($1)){
  1159. $2=_st((smalltalk.UnknownVariableError || UnknownVariableError))._new();
  1160. _st($2)._variableName_(_st(aNode)._value());
  1161. $3=_st($2)._signal();
  1162. $3;
  1163. } else {
  1164. _st(_st(_st(self["@currentScope"])._methodScope())._unknownVariables())._add_(_st(aNode)._value());
  1165. };
  1166. return self}, self, "errorUnknownVariable:", [aNode], smalltalk.SemanticAnalyzer)},
  1167. args: ["aNode"],
  1168. source: "errorUnknownVariable: aNode\x0a\x09\x22Throw an error if the variable is undeclared in the global JS scope (i.e. window)\x22\x0a\x0a\x09(self isVariableGloballyUndefined: aNode value)\x0a\x09\x09ifTrue: [ \x0a\x09\x09\x09UnknownVariableError new\x0a\x09\x09\x09\x09variableName: aNode value;\x0a\x09\x09\x09\x09signal ]\x0a\x09\x09ifFalse: [\x0a\x09\x09\x09currentScope methodScope unknownVariables add: aNode value. ]",
  1169. messageSends: ["ifTrue:ifFalse:", "variableName:", "value", "new", "signal", "add:", "unknownVariables", "methodScope", "isVariableGloballyUndefined:"],
  1170. referencedClasses: ["UnknownVariableError"]
  1171. }),
  1172. smalltalk.SemanticAnalyzer);
  1173. smalltalk.addMethod(
  1174. "_isVariableGloballyUndefined_",
  1175. smalltalk.method({
  1176. selector: "isVariableGloballyUndefined:",
  1177. category: 'testing',
  1178. fn: function (aString){
  1179. var self=this;
  1180. return smalltalk.withContext(function($ctx1) { return eval('typeof ' + aString + ' == "undefined"');
  1181. ;
  1182. return self}, self, "isVariableGloballyUndefined:", [aString], smalltalk.SemanticAnalyzer)},
  1183. args: ["aString"],
  1184. source: "isVariableGloballyUndefined: aString\x0a\x09<return eval('typeof ' + aString + ' == \x22undefined\x22')>",
  1185. messageSends: [],
  1186. referencedClasses: []
  1187. }),
  1188. smalltalk.SemanticAnalyzer);
  1189. smalltalk.addMethod(
  1190. "_messageSends",
  1191. smalltalk.method({
  1192. selector: "messageSends",
  1193. category: 'accessing',
  1194. fn: function (){
  1195. var self=this;
  1196. return smalltalk.withContext(function($ctx1) { var $1;
  1197. if(($receiver = self["@messageSends"]) == nil || $receiver == undefined){
  1198. self["@messageSends"]=_st((smalltalk.Dictionary || Dictionary))._new();
  1199. $1=self["@messageSends"];
  1200. } else {
  1201. $1=self["@messageSends"];
  1202. };
  1203. return $1;
  1204. }, self, "messageSends", [], smalltalk.SemanticAnalyzer)},
  1205. args: [],
  1206. source: "messageSends\x0a\x09^ messageSends ifNil: [ messageSends := Dictionary new ]",
  1207. messageSends: ["ifNil:", "new"],
  1208. referencedClasses: ["Dictionary"]
  1209. }),
  1210. smalltalk.SemanticAnalyzer);
  1211. smalltalk.addMethod(
  1212. "_newBlockScope",
  1213. smalltalk.method({
  1214. selector: "newBlockScope",
  1215. category: 'factory',
  1216. fn: function (){
  1217. var self=this;
  1218. return smalltalk.withContext(function($ctx1) { var $1;
  1219. $1=_st(self)._newScopeOfClass_((smalltalk.LexicalScope || LexicalScope));
  1220. return $1;
  1221. }, self, "newBlockScope", [], smalltalk.SemanticAnalyzer)},
  1222. args: [],
  1223. source: "newBlockScope\x0a\x09^ self newScopeOfClass: LexicalScope",
  1224. messageSends: ["newScopeOfClass:"],
  1225. referencedClasses: ["LexicalScope"]
  1226. }),
  1227. smalltalk.SemanticAnalyzer);
  1228. smalltalk.addMethod(
  1229. "_newMethodScope",
  1230. smalltalk.method({
  1231. selector: "newMethodScope",
  1232. category: 'factory',
  1233. fn: function (){
  1234. var self=this;
  1235. return smalltalk.withContext(function($ctx1) { var $1;
  1236. $1=_st(self)._newScopeOfClass_((smalltalk.MethodLexicalScope || MethodLexicalScope));
  1237. return $1;
  1238. }, self, "newMethodScope", [], smalltalk.SemanticAnalyzer)},
  1239. args: [],
  1240. source: "newMethodScope\x0a\x09^ self newScopeOfClass: MethodLexicalScope",
  1241. messageSends: ["newScopeOfClass:"],
  1242. referencedClasses: ["MethodLexicalScope"]
  1243. }),
  1244. smalltalk.SemanticAnalyzer);
  1245. smalltalk.addMethod(
  1246. "_newScopeOfClass_",
  1247. smalltalk.method({
  1248. selector: "newScopeOfClass:",
  1249. category: 'factory',
  1250. fn: function (aLexicalScopeClass){
  1251. var self=this;
  1252. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  1253. $2=_st(aLexicalScopeClass)._new();
  1254. _st($2)._outerScope_(self["@currentScope"]);
  1255. $3=_st($2)._yourself();
  1256. $1=$3;
  1257. return $1;
  1258. }, self, "newScopeOfClass:", [aLexicalScopeClass], smalltalk.SemanticAnalyzer)},
  1259. args: ["aLexicalScopeClass"],
  1260. source: "newScopeOfClass: aLexicalScopeClass\x0a\x09^ aLexicalScopeClass new \x0a\x09\x09outerScope: currentScope;\x0a\x09\x09yourself",
  1261. messageSends: ["outerScope:", "new", "yourself"],
  1262. referencedClasses: []
  1263. }),
  1264. smalltalk.SemanticAnalyzer);
  1265. smalltalk.addMethod(
  1266. "_popScope",
  1267. smalltalk.method({
  1268. selector: "popScope",
  1269. category: 'scope',
  1270. fn: function (){
  1271. var self=this;
  1272. return smalltalk.withContext(function($ctx1) { if(($receiver = self["@currentScope"]) == nil || $receiver == undefined){
  1273. self["@currentScope"];
  1274. } else {
  1275. self["@currentScope"]=_st(self["@currentScope"])._outerScope();
  1276. self["@currentScope"];
  1277. };
  1278. return self}, self, "popScope", [], smalltalk.SemanticAnalyzer)},
  1279. args: [],
  1280. source: "popScope\x0a\x09currentScope ifNotNil: [\x0a\x09\x09currentScope := currentScope outerScope ]",
  1281. messageSends: ["ifNotNil:", "outerScope"],
  1282. referencedClasses: []
  1283. }),
  1284. smalltalk.SemanticAnalyzer);
  1285. smalltalk.addMethod(
  1286. "_pushScope_",
  1287. smalltalk.method({
  1288. selector: "pushScope:",
  1289. category: 'scope',
  1290. fn: function (aScope){
  1291. var self=this;
  1292. return smalltalk.withContext(function($ctx1) { _st(aScope)._outerScope_(self["@currentScope"]);
  1293. self["@currentScope"]=aScope;
  1294. return self}, self, "pushScope:", [aScope], smalltalk.SemanticAnalyzer)},
  1295. args: ["aScope"],
  1296. source: "pushScope: aScope\x0a\x09aScope outerScope: currentScope.\x0a\x09currentScope := aScope",
  1297. messageSends: ["outerScope:"],
  1298. referencedClasses: []
  1299. }),
  1300. smalltalk.SemanticAnalyzer);
  1301. smalltalk.addMethod(
  1302. "_superSends",
  1303. smalltalk.method({
  1304. selector: "superSends",
  1305. category: 'accessing',
  1306. fn: function (){
  1307. var self=this;
  1308. return smalltalk.withContext(function($ctx1) { var $1;
  1309. if(($receiver = self["@superSends"]) == nil || $receiver == undefined){
  1310. self["@superSends"]=_st((smalltalk.Dictionary || Dictionary))._new();
  1311. $1=self["@superSends"];
  1312. } else {
  1313. $1=self["@superSends"];
  1314. };
  1315. return $1;
  1316. }, self, "superSends", [], smalltalk.SemanticAnalyzer)},
  1317. args: [],
  1318. source: "superSends\x0a\x09^ superSends ifNil: [ superSends := Dictionary new ]",
  1319. messageSends: ["ifNil:", "new"],
  1320. referencedClasses: ["Dictionary"]
  1321. }),
  1322. smalltalk.SemanticAnalyzer);
  1323. smalltalk.addMethod(
  1324. "_theClass",
  1325. smalltalk.method({
  1326. selector: "theClass",
  1327. category: 'accessing',
  1328. fn: function (){
  1329. var self=this;
  1330. return smalltalk.withContext(function($ctx1) { return self["@theClass"];
  1331. }, self, "theClass", [], smalltalk.SemanticAnalyzer)},
  1332. args: [],
  1333. source: "theClass\x0a\x09^ theClass",
  1334. messageSends: [],
  1335. referencedClasses: []
  1336. }),
  1337. smalltalk.SemanticAnalyzer);
  1338. smalltalk.addMethod(
  1339. "_theClass_",
  1340. smalltalk.method({
  1341. selector: "theClass:",
  1342. category: 'accessing',
  1343. fn: function (aClass){
  1344. var self=this;
  1345. return smalltalk.withContext(function($ctx1) { self["@theClass"]=aClass;
  1346. return self}, self, "theClass:", [aClass], smalltalk.SemanticAnalyzer)},
  1347. args: ["aClass"],
  1348. source: "theClass: aClass\x0a\x09theClass := aClass",
  1349. messageSends: [],
  1350. referencedClasses: []
  1351. }),
  1352. smalltalk.SemanticAnalyzer);
  1353. smalltalk.addMethod(
  1354. "_validateVariableScope_",
  1355. smalltalk.method({
  1356. selector: "validateVariableScope:",
  1357. category: 'scope',
  1358. fn: function (aString){
  1359. var self=this;
  1360. return smalltalk.withContext(function($ctx1) { var $1;
  1361. $1=_st(self["@currentScope"])._lookupVariable_(aString);
  1362. if(($receiver = $1) == nil || $receiver == undefined){
  1363. $1;
  1364. } else {
  1365. _st(self)._errorShadowingVariable_(aString);
  1366. };
  1367. return self}, self, "validateVariableScope:", [aString], smalltalk.SemanticAnalyzer)},
  1368. args: ["aString"],
  1369. source: "validateVariableScope: aString\x0a\x09\x22Validate the variable scope in by doing a recursive lookup, up to the method scope\x22\x0a\x0a\x09(currentScope lookupVariable: aString) ifNotNil: [\x0a\x09\x09self errorShadowingVariable: aString ]",
  1370. messageSends: ["ifNotNil:", "errorShadowingVariable:", "lookupVariable:"],
  1371. referencedClasses: []
  1372. }),
  1373. smalltalk.SemanticAnalyzer);
  1374. smalltalk.addMethod(
  1375. "_visitAssignmentNode_",
  1376. smalltalk.method({
  1377. selector: "visitAssignmentNode:",
  1378. category: 'visiting',
  1379. fn: function (aNode){
  1380. var self=this;
  1381. return smalltalk.withContext(function($ctx1) { smalltalk.NodeVisitor.fn.prototype._visitAssignmentNode_.apply(_st(self), [aNode]);
  1382. _st(_st(aNode)._left())._beAssigned();
  1383. return self}, self, "visitAssignmentNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1384. args: ["aNode"],
  1385. source: "visitAssignmentNode: aNode\x0a\x09super visitAssignmentNode: aNode.\x0a\x09aNode left beAssigned",
  1386. messageSends: ["visitAssignmentNode:", "beAssigned", "left"],
  1387. referencedClasses: []
  1388. }),
  1389. smalltalk.SemanticAnalyzer);
  1390. smalltalk.addMethod(
  1391. "_visitBlockNode_",
  1392. smalltalk.method({
  1393. selector: "visitBlockNode:",
  1394. category: 'visiting',
  1395. fn: function (aNode){
  1396. var self=this;
  1397. return smalltalk.withContext(function($ctx1) { _st(self)._pushScope_(_st(self)._newBlockScope());
  1398. _st(aNode)._scope_(self["@currentScope"]);
  1399. _st(self["@currentScope"])._node_(aNode);
  1400. _st(_st(aNode)._parameters())._do_((function(each){
  1401. return smalltalk.withContext(function($ctx2) { _st(self)._validateVariableScope_(each);
  1402. return _st(self["@currentScope"])._addArg_(each);
  1403. })}));
  1404. smalltalk.NodeVisitor.fn.prototype._visitBlockNode_.apply(_st(self), [aNode]);
  1405. _st(self)._popScope();
  1406. return self}, self, "visitBlockNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1407. args: ["aNode"],
  1408. source: "visitBlockNode: aNode\x0a\x09self pushScope: self newBlockScope.\x0a\x09aNode scope: currentScope.\x0a\x09currentScope node: aNode.\x0a\x09\x0a\x09aNode parameters do: [ :each | \x0a\x09\x09self validateVariableScope: each.\x0a\x09\x09currentScope addArg: each ].\x0a\x0a\x09super visitBlockNode: aNode.\x0a\x09self popScope",
  1409. messageSends: ["pushScope:", "newBlockScope", "scope:", "node:", "do:", "validateVariableScope:", "addArg:", "parameters", "visitBlockNode:", "popScope"],
  1410. referencedClasses: []
  1411. }),
  1412. smalltalk.SemanticAnalyzer);
  1413. smalltalk.addMethod(
  1414. "_visitCascadeNode_",
  1415. smalltalk.method({
  1416. selector: "visitCascadeNode:",
  1417. category: 'visiting',
  1418. fn: function (aNode){
  1419. var self=this;
  1420. return smalltalk.withContext(function($ctx1) { var $1;
  1421. _st(_st(aNode)._nodes())._do_((function(each){
  1422. return smalltalk.withContext(function($ctx2) { return _st(each)._receiver_(_st(aNode)._receiver());
  1423. })}));
  1424. smalltalk.NodeVisitor.fn.prototype._visitCascadeNode_.apply(_st(self), [aNode]);
  1425. $1=_st(_st(_st(aNode)._nodes())._first())._superSend();
  1426. if(smalltalk.assert($1)){
  1427. _st(_st(aNode)._nodes())._do_((function(each){
  1428. return smalltalk.withContext(function($ctx2) { return _st(each)._superSend_(true);
  1429. })}));
  1430. };
  1431. return self}, self, "visitCascadeNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1432. args: ["aNode"],
  1433. source: "visitCascadeNode: aNode\x0a\x09\x22Populate the receiver into all children\x22\x0a\x09aNode nodes do: [ :each | \x0a\x09\x09each receiver: aNode receiver ].\x0a\x09super visitCascadeNode: aNode.\x0a\x09aNode nodes first superSend ifTrue: [\x0a\x09\x09aNode nodes do: [ :each | each superSend: true ]]",
  1434. messageSends: ["do:", "receiver:", "receiver", "nodes", "visitCascadeNode:", "ifTrue:", "superSend:", "superSend", "first"],
  1435. referencedClasses: []
  1436. }),
  1437. smalltalk.SemanticAnalyzer);
  1438. smalltalk.addMethod(
  1439. "_visitClassReferenceNode_",
  1440. smalltalk.method({
  1441. selector: "visitClassReferenceNode:",
  1442. category: 'visiting',
  1443. fn: function (aNode){
  1444. var self=this;
  1445. return smalltalk.withContext(function($ctx1) { var $1,$2;
  1446. _st(_st(self)._classReferences())._add_(_st(aNode)._value());
  1447. $1=_st((smalltalk.ClassRefVar || ClassRefVar))._new();
  1448. _st($1)._name_(_st(aNode)._value());
  1449. $2=_st($1)._yourself();
  1450. _st(aNode)._binding_($2);
  1451. return self}, self, "visitClassReferenceNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1452. args: ["aNode"],
  1453. source: "visitClassReferenceNode: aNode\x0a\x09self classReferences add: aNode value.\x0a\x09aNode binding: (ClassRefVar new name: aNode value; yourself)",
  1454. messageSends: ["add:", "value", "classReferences", "binding:", "name:", "new", "yourself"],
  1455. referencedClasses: ["ClassRefVar"]
  1456. }),
  1457. smalltalk.SemanticAnalyzer);
  1458. smalltalk.addMethod(
  1459. "_visitMethodNode_",
  1460. smalltalk.method({
  1461. selector: "visitMethodNode:",
  1462. category: 'visiting',
  1463. fn: function (aNode){
  1464. var self=this;
  1465. return smalltalk.withContext(function($ctx1) { var $1;
  1466. _st(self)._pushScope_(_st(self)._newMethodScope());
  1467. _st(aNode)._scope_(self["@currentScope"]);
  1468. _st(self["@currentScope"])._node_(aNode);
  1469. _st(_st(_st(self)._theClass())._allInstanceVariableNames())._do_((function(each){
  1470. return smalltalk.withContext(function($ctx2) { return _st(self["@currentScope"])._addIVar_(each);
  1471. })}));
  1472. _st(_st(aNode)._arguments())._do_((function(each){
  1473. return smalltalk.withContext(function($ctx2) { _st(self)._validateVariableScope_(each);
  1474. return _st(self["@currentScope"])._addArg_(each);
  1475. })}));
  1476. smalltalk.NodeVisitor.fn.prototype._visitMethodNode_.apply(_st(self), [aNode]);
  1477. _st(aNode)._classReferences_(_st(self)._classReferences());
  1478. _st(aNode)._messageSends_(_st(_st(self)._messageSends())._keys());
  1479. $1=_st(aNode)._superSends_(_st(_st(self)._superSends())._keys());
  1480. _st(self)._popScope();
  1481. return self}, self, "visitMethodNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1482. args: ["aNode"],
  1483. source: "visitMethodNode: aNode\x0a\x09self pushScope: self newMethodScope.\x0a\x09aNode scope: currentScope.\x0a\x09currentScope node: aNode.\x0a\x0a\x09self theClass allInstanceVariableNames do: [:each | \x0a\x09\x09currentScope addIVar: each ].\x0a\x09aNode arguments do: [ :each | \x0a\x09\x09self validateVariableScope: each.\x0a\x09\x09currentScope addArg: each ].\x0a\x0a\x09super visitMethodNode: aNode.\x0a\x0a\x09aNode \x0a\x09\x09classReferences: self classReferences;\x0a\x09\x09messageSends: self messageSends keys;\x0a superSends: self superSends keys.\x0a\x09self popScope",
  1484. messageSends: ["pushScope:", "newMethodScope", "scope:", "node:", "do:", "addIVar:", "allInstanceVariableNames", "theClass", "validateVariableScope:", "addArg:", "arguments", "visitMethodNode:", "classReferences:", "classReferences", "messageSends:", "keys", "messageSends", "superSends:", "superSends", "popScope"],
  1485. referencedClasses: []
  1486. }),
  1487. smalltalk.SemanticAnalyzer);
  1488. smalltalk.addMethod(
  1489. "_visitReturnNode_",
  1490. smalltalk.method({
  1491. selector: "visitReturnNode:",
  1492. category: 'visiting',
  1493. fn: function (aNode){
  1494. var self=this;
  1495. return smalltalk.withContext(function($ctx1) { var $1;
  1496. _st(aNode)._scope_(self["@currentScope"]);
  1497. $1=_st(self["@currentScope"])._isMethodScope();
  1498. if(smalltalk.assert($1)){
  1499. _st(self["@currentScope"])._localReturn_(true);
  1500. } else {
  1501. _st(_st(self["@currentScope"])._methodScope())._addNonLocalReturn_(self["@currentScope"]);
  1502. };
  1503. smalltalk.NodeVisitor.fn.prototype._visitReturnNode_.apply(_st(self), [aNode]);
  1504. return self}, self, "visitReturnNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1505. args: ["aNode"],
  1506. source: "visitReturnNode: aNode\x0a\x09aNode scope: currentScope.\x0a\x09currentScope isMethodScope\x0a\x09\x09ifTrue: [ currentScope localReturn: true ]\x0a\x09\x09ifFalse: [ currentScope methodScope addNonLocalReturn: currentScope ].\x0a\x09super visitReturnNode: aNode",
  1507. messageSends: ["scope:", "ifTrue:ifFalse:", "localReturn:", "addNonLocalReturn:", "methodScope", "isMethodScope", "visitReturnNode:"],
  1508. referencedClasses: []
  1509. }),
  1510. smalltalk.SemanticAnalyzer);
  1511. smalltalk.addMethod(
  1512. "_visitSendNode_",
  1513. smalltalk.method({
  1514. selector: "visitSendNode:",
  1515. category: 'visiting',
  1516. fn: function (aNode){
  1517. var self=this;
  1518. return smalltalk.withContext(function($ctx1) { var $1,$2,$3;
  1519. $1=_st(_st(_st(aNode)._receiver())._value()).__eq("super");
  1520. if(smalltalk.assert($1)){
  1521. _st(aNode)._superSend_(true);
  1522. _st(_st(aNode)._receiver())._value_("self");
  1523. _st(_st(self)._superSends())._at_ifAbsentPut_(_st(aNode)._selector(),(function(){
  1524. return smalltalk.withContext(function($ctx2) { return _st((smalltalk.Set || Set))._new();
  1525. })}));
  1526. _st(_st(_st(self)._superSends())._at_(_st(aNode)._selector()))._add_(aNode);
  1527. } else {
  1528. $2=_st(_st((smalltalk.IRSendInliner || IRSendInliner))._inlinedSelectors())._includes_(_st(aNode)._selector());
  1529. if(smalltalk.assert($2)){
  1530. _st(aNode)._shouldBeInlined_(true);
  1531. $3=_st(_st(aNode)._receiver())._isValueNode();
  1532. if(! smalltalk.assert($3)){
  1533. _st(_st(aNode)._receiver())._shouldBeAliased_(true);
  1534. };
  1535. };
  1536. };
  1537. _st(_st(self)._messageSends())._at_ifAbsentPut_(_st(aNode)._selector(),(function(){
  1538. return smalltalk.withContext(function($ctx2) { return _st((smalltalk.Set || Set))._new();
  1539. })}));
  1540. _st(_st(_st(self)._messageSends())._at_(_st(aNode)._selector()))._add_(aNode);
  1541. _st(aNode)._index_(_st(_st(_st(self)._messageSends())._at_(_st(aNode)._selector()))._size());
  1542. smalltalk.NodeVisitor.fn.prototype._visitSendNode_.apply(_st(self), [aNode]);
  1543. return self}, self, "visitSendNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1544. args: ["aNode"],
  1545. source: "visitSendNode: aNode\x0a\x0a\x09aNode receiver value = 'super' \x0a\x09\x09ifTrue: [\x0a\x09\x09\x09aNode superSend: true.\x0a\x09\x09\x09aNode receiver value: 'self'.\x0a\x09\x09\x09self superSends at: aNode selector ifAbsentPut: [ Set new ].\x0a\x09\x09\x09(self superSends at: aNode selector) add: aNode ]\x0a \x0a\x09\x09ifFalse: [ (IRSendInliner inlinedSelectors includes: aNode selector) ifTrue: [\x0a\x09\x09\x09aNode shouldBeInlined: true.\x0a\x09\x09\x09aNode receiver isValueNode ifFalse: [ aNode receiver shouldBeAliased: true ] ] ].\x0a\x0a\x09self messageSends at: aNode selector ifAbsentPut: [ Set new ].\x0a\x09(self messageSends at: aNode selector) add: aNode.\x0a\x0a\x09aNode index: (self messageSends at: aNode selector) size.\x0a\x0a\x09super visitSendNode: aNode",
  1546. messageSends: ["ifTrue:ifFalse:", "superSend:", "value:", "receiver", "at:ifAbsentPut:", "selector", "new", "superSends", "add:", "at:", "ifTrue:", "shouldBeInlined:", "ifFalse:", "shouldBeAliased:", "isValueNode", "includes:", "inlinedSelectors", "=", "value", "messageSends", "index:", "size", "visitSendNode:"],
  1547. referencedClasses: ["Set", "IRSendInliner"]
  1548. }),
  1549. smalltalk.SemanticAnalyzer);
  1550. smalltalk.addMethod(
  1551. "_visitSequenceNode_",
  1552. smalltalk.method({
  1553. selector: "visitSequenceNode:",
  1554. category: 'visiting',
  1555. fn: function (aNode){
  1556. var self=this;
  1557. return smalltalk.withContext(function($ctx1) { _st(_st(aNode)._temps())._do_((function(each){
  1558. return smalltalk.withContext(function($ctx2) { _st(self)._validateVariableScope_(each);
  1559. return _st(self["@currentScope"])._addTemp_(each);
  1560. })}));
  1561. smalltalk.NodeVisitor.fn.prototype._visitSequenceNode_.apply(_st(self), [aNode]);
  1562. return self}, self, "visitSequenceNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1563. args: ["aNode"],
  1564. source: "visitSequenceNode: aNode\x0a\x09aNode temps do: [ :each | \x0a\x09\x09self validateVariableScope: each.\x0a\x09\x09currentScope addTemp: each ].\x0a\x0a\x09super visitSequenceNode: aNode",
  1565. messageSends: ["do:", "validateVariableScope:", "addTemp:", "temps", "visitSequenceNode:"],
  1566. referencedClasses: []
  1567. }),
  1568. smalltalk.SemanticAnalyzer);
  1569. smalltalk.addMethod(
  1570. "_visitVariableNode_",
  1571. smalltalk.method({
  1572. selector: "visitVariableNode:",
  1573. category: 'visiting',
  1574. fn: function (aNode){
  1575. var self=this;
  1576. return smalltalk.withContext(function($ctx1) { var $2,$3,$4,$1;
  1577. $2=_st(self["@currentScope"])._lookupVariable_(aNode);
  1578. if(($receiver = $2) == nil || $receiver == undefined){
  1579. _st(self)._errorUnknownVariable_(aNode);
  1580. $3=_st((smalltalk.UnknownVar || UnknownVar))._new();
  1581. _st($3)._name_(_st(aNode)._value());
  1582. $4=_st($3)._yourself();
  1583. $1=$4;
  1584. } else {
  1585. $1=$2;
  1586. };
  1587. _st(aNode)._binding_($1);
  1588. return self}, self, "visitVariableNode:", [aNode], smalltalk.SemanticAnalyzer)},
  1589. args: ["aNode"],
  1590. source: "visitVariableNode: aNode\x0a\x09\x22Bind a ScopeVar to aNode by doing a lookup in the current scope.\x0a\x09If no ScopeVar is found, bind a UnknowVar and throw an error\x22\x0a\x0a\x09aNode binding: ((currentScope lookupVariable: aNode) ifNil: [ \x0a\x09\x09self errorUnknownVariable: aNode.\x0a\x09\x09UnknownVar new name: aNode value; yourself ])",
  1591. messageSends: ["binding:", "ifNil:", "errorUnknownVariable:", "name:", "value", "new", "yourself", "lookupVariable:"],
  1592. referencedClasses: ["UnknownVar"]
  1593. }),
  1594. smalltalk.SemanticAnalyzer);
  1595. smalltalk.addMethod(
  1596. "_on_",
  1597. smalltalk.method({
  1598. selector: "on:",
  1599. category: 'instance creation',
  1600. fn: function (aClass){
  1601. var self=this;
  1602. return smalltalk.withContext(function($ctx1) { var $2,$3,$1;
  1603. $2=_st(self)._new();
  1604. _st($2)._theClass_(aClass);
  1605. $3=_st($2)._yourself();
  1606. $1=$3;
  1607. return $1;
  1608. }, self, "on:", [aClass], smalltalk.SemanticAnalyzer.klass)},
  1609. args: ["aClass"],
  1610. source: "on: aClass\x0a\x09^ self new\x0a\x09\x09theClass: aClass;\x0a\x09\x09yourself",
  1611. messageSends: ["theClass:", "new", "yourself"],
  1612. referencedClasses: []
  1613. }),
  1614. smalltalk.SemanticAnalyzer.klass);