Compiler-Tests.st 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. Smalltalk createPackage: 'Compiler-Tests'!
  2. TestCase subclass: #ASTParsingTest
  3. instanceVariableNames: ''
  4. package: 'Compiler-Tests'!
  5. !ASTParsingTest methodsFor: 'convenience'!
  6. analyze: aNode forClass: aClass
  7. (SemanticAnalyzer on: aClass) visit: aNode.
  8. ^ aNode
  9. ! !
  10. !ASTParsingTest methodsFor: 'parsing'!
  11. parse: aString
  12. ^ Smalltalk parse: aString
  13. !
  14. parse: aString forClass: aClass
  15. ^ self analyze: (self parse: aString) forClass: aClass
  16. ! !
  17. ASTParsingTest subclass: #ASTPCNodeVisitorTest
  18. instanceVariableNames: ''
  19. package: 'Compiler-Tests'!
  20. !ASTPCNodeVisitorTest methodsFor: 'factory'!
  21. astPCNodeVisitor
  22. ^ ASTPCNodeVisitor new
  23. context: (AIContext new
  24. yourself);
  25. yourself
  26. !
  27. astPCNodeVisitorForSelector: aString
  28. ^ ASTPCNodeVisitor new
  29. selector: aString;
  30. context: (AIContext new
  31. yourself);
  32. yourself
  33. ! !
  34. !ASTPCNodeVisitorTest methodsFor: 'tests'!
  35. testJSStatementNode
  36. | ast visitor |
  37. ast := self parse: 'foo <consolee.log(1)>' forClass: Object.
  38. self assert: (self astPCNodeVisitor
  39. visit: ast;
  40. currentNode) isJSStatementNode
  41. !
  42. testMessageSend
  43. | ast |
  44. ast := self parse: 'foo self asString yourself. ^ self asBoolean' forClass: Object.
  45. self assert: ((self astPCNodeVisitorForSelector: 'yourself')
  46. visit: ast;
  47. currentNode) selector equals: 'yourself'
  48. !
  49. testMessageSendWithBlocks
  50. | ast |
  51. ast := self parse: 'foo true ifTrue: [ [ self asString yourself ] value. ]. ^ self asBoolean' forClass: Object.
  52. self assert: ((self astPCNodeVisitorForSelector: 'yourself')
  53. visit: ast;
  54. currentNode) selector equals: 'yourself'
  55. !
  56. testMessageSendWithInlining
  57. | ast |
  58. ast := self parse: 'foo true ifTrue: [ self asString yourself ]. ^ self asBoolean' forClass: Object.
  59. self assert: ((self astPCNodeVisitorForSelector: 'yourself')
  60. visit: ast;
  61. currentNode) selector equals: 'yourself'.
  62. ast := self parse: 'foo true ifTrue: [ self asString yourself ]. ^ self asBoolean' forClass: Object.
  63. self assert: ((self astPCNodeVisitorForSelector: 'asBoolean')
  64. visit: ast;
  65. currentNode) selector equals: 'asBoolean'
  66. !
  67. testNoMessageSend
  68. | ast |
  69. ast := self parse: 'foo ^ self' forClass: Object.
  70. self assert: (self astPCNodeVisitor
  71. visit: ast;
  72. currentNode) isNil
  73. !
  74. testPC
  75. | ast visitor |
  76. ast := self parse: 'foo <console.log(1)>' forClass: Object.
  77. self assert: (self astPCNodeVisitor
  78. visit: ast;
  79. currentNode) isJSStatementNode
  80. ! !
  81. ASTParsingTest subclass: #ASTPositionTest
  82. instanceVariableNames: ''
  83. package: 'Compiler-Tests'!
  84. !ASTPositionTest methodsFor: 'tests'!
  85. testNodeAtPosition
  86. | node |
  87. node := self parse: 'yourself
  88. ^ self'.
  89. self assert: (node navigationNodeAt: 2@4 ifAbsent: [ nil ]) source equals: 'self'.
  90. node := self parse: 'foo
  91. true ifTrue: [ 1 ]'.
  92. self assert: (node navigationNodeAt: 2@7 ifAbsent: [ nil ]) selector equals: 'ifTrue:'.
  93. node := self parse: 'foo
  94. self foo; bar; baz'.
  95. self assert: (node navigationNodeAt: 2@8 ifAbsent: [ nil ]) selector equals: 'foo'
  96. ! !
  97. ASTParsingTest subclass: #CodeGeneratorTest
  98. instanceVariableNames: 'receiver'
  99. package: 'Compiler-Tests'!
  100. !CodeGeneratorTest methodsFor: 'accessing'!
  101. codeGeneratorClass
  102. ^ CodeGenerator
  103. ! !
  104. !CodeGeneratorTest methodsFor: 'factory'!
  105. compiler
  106. ^ Compiler new
  107. codeGeneratorClass: self codeGeneratorClass;
  108. yourself
  109. ! !
  110. !CodeGeneratorTest methodsFor: 'initialization'!
  111. setUp
  112. receiver := DoIt new
  113. !
  114. tearDown
  115. "receiver := nil"
  116. ! !
  117. !CodeGeneratorTest methodsFor: 'testing'!
  118. should: aString receiver: anObject raise: anErrorClass
  119. | method result |
  120. receiver := anObject.
  121. [ self should: [
  122. method := self compiler install: aString forClass: anObject class protocol: 'tests'.
  123. receiver perform: method selector ] raise: anErrorClass ]
  124. ensure: [ method ifNotNil: [ anObject class removeCompiledMethod: method ] ]
  125. !
  126. should: aString receiver: anObject return: aResult
  127. | method result |
  128. receiver := anObject.
  129. method := self compiler install: aString forClass: anObject class protocol: 'tests'.
  130. result := receiver perform: method selector.
  131. anObject class removeCompiledMethod: method.
  132. self assert: aResult equals: result
  133. !
  134. should: aString return: anObject
  135. ^ self
  136. should: aString
  137. receiver: receiver
  138. return: anObject
  139. ! !
  140. !CodeGeneratorTest methodsFor: 'tests'!
  141. testAssignment
  142. self should: 'foo | a | a := true ifTrue: [ 1 ]. ^ a' return: 1.
  143. self should: 'foo | a | a := false ifTrue: [ 1 ]. ^ a' return: nil.
  144. self should: 'foo | a | ^ a := true ifTrue: [ 1 ]' return: 1
  145. !
  146. testBackslashSelectors
  147. self should: '\ arg ^ 4' return: 4.
  148. self should: '\\ arg ^ 42' return: 42
  149. !
  150. testBlockReturn
  151. self should: 'foo ^ #(1 2 3) collect: [ :each | true ifTrue: [ each + 1 ] ]' return: #(2 3 4).
  152. self should: 'foo ^ #(1 2 3) collect: [ :each | false ifFalse: [ each + 1 ] ]' return: #(2 3 4).
  153. self should: 'foo ^ #(1 2 3) collect: [ :each | each odd ifTrue: [ each + 1 ] ifFalse: [ each - 1 ] ]' return: #(2 1 4).
  154. !
  155. testCascades
  156. self should: 'foo ^ Array new add: 3; add: 4; yourself' return: #(3 4)
  157. !
  158. testCascadesWithInlining
  159. self should: 'foo ^ true class; ifTrue: [ 1 ] ifFalse: [ 2 ]' return: 1.
  160. self should: 'foo ^ false class; ifTrue: [ 1 ] ifFalse: [ 2 ]' return: 2
  161. !
  162. testDynamicArrayElementsOrdered
  163. self should: 'foo
  164. | x |
  165. x := 1.
  166. ^ { x. x := 2 }
  167. ' return: #(1 2).
  168. self should: 'foo
  169. | x |
  170. x := 1.
  171. ^ { x. true ifTrue: [ x := 2 ] }
  172. ' return: #(1 2).
  173. !
  174. testDynamicDictionaryElementsOrdered
  175. self should: 'foo
  176. | x |
  177. x := ''foo''.
  178. ^ #{ x->1. ''bar''->(true ifTrue: [ 2 ]) }
  179. ' return: #{'foo'->1. 'bar'->2}.
  180. !
  181. testDynamicDictionaryWithMoreArrows
  182. self should: 'foo ^ #{1->2->3}' return: (HashedCollection with: 1->2->3)
  183. !
  184. testGlobalVar
  185. self should: 'foo ^ eval class' return: BlockClosure.
  186. self should: 'foo ^ Math cos: 0' return: 1.
  187. self should: 'foo ^ NonExistingVar' return: nil
  188. !
  189. testInnerTemporalDependentElementsOrdered
  190. self should: 'foo
  191. | x |
  192. x := Array.
  193. ^ x with: ''foo''->x with: ''bar''->(x := 2)
  194. ' return: {'foo'->Array. 'bar'->2}.
  195. self should: 'foo
  196. | x |
  197. x := Array.
  198. ^ x with: ''foo''->x with: ''bar''->(true ifTrue: [ x := 2 ])
  199. ' return: {'foo'->Array. 'bar'->2}.
  200. self should: 'foo
  201. | x |
  202. x := 1.
  203. ^ Array with: ''foo''->x with: ''bar''->(true ifTrue: [ x := 2 ])
  204. ' return: {'foo'->1. 'bar'->2}.
  205. self should: 'foo
  206. | x |
  207. x := 1.
  208. ^ { ''foo''->x. ''bar''->(true ifTrue: [ x := 2 ]) }
  209. ' return: {'foo'->1. 'bar'->2}.
  210. self should: 'foo
  211. | x |
  212. x := 1.
  213. ^ #{ ''foo''->x. ''bar''->(true ifTrue: [ x := 2 ]) }
  214. ' return: #{'foo'->1. 'bar'->2}.
  215. !
  216. testJSStatement
  217. self should: 'foo <return 2+3>' return: 5
  218. !
  219. testLexicalScope
  220. self should: 'foo | a | a := 1. [ a := 2 ] value. ^ a' return: 2
  221. !
  222. testLiterals
  223. self should: 'foo ^ 1' return: 1.
  224. self should: 'foo ^ ''hello''' return: 'hello'.
  225. self should: 'foo ^ #(1 2 3 4)' return: #(1 2 3 4).
  226. self should: 'foo ^ {1. [:x | x ] value: 2. 3. [4] value}' return: #(1 2 3 4).
  227. self should: 'foo ^ true' return: true.
  228. self should: 'foo ^ false' return: false.
  229. self should: 'foo ^ #{1->2. 3->4}' return: #{1->2. 3->4}.
  230. self should: 'foo ^ #hello' return: #hello.
  231. self should: 'foo ^ $h' return: 'h'.
  232. self should: 'foo ^ -123.456' return: -123.456.
  233. self should: 'foo ^ -2.5e4' return: -25000.
  234. !
  235. testLocalReturn
  236. self should: 'foo ^ 1' return: 1.
  237. self should: 'foo ^ 1 + 1' return: 2.
  238. self should: 'foo ' return: receiver.
  239. self should: 'foo self asString' return: receiver.
  240. self should: 'foo | a b | a := 1. b := 2. ^ a + b' return: 3
  241. !
  242. testMessageSends
  243. self should: 'foo ^ 1 asString' return: '1'.
  244. self should: 'foo ^ 1 + 1' return: 2.
  245. self should: 'foo ^ 1 + 2 * 3' return: 9.
  246. self should: 'foo ^ 1 to: 3' return: #(1 2 3).
  247. self should: 'foo ^ 1 to: 5 by: 2' return: #(1 3 5)
  248. !
  249. testMultipleSequences
  250. self should: 'foo | a b c | a := 2. b := 3. c := a + b. ^ c * 6' return: 30
  251. !
  252. testMutableLiterals
  253. "Mutable literals must be aliased in cascades.
  254. See https://github.com/amber-smalltalk/amber/issues/428"
  255. self
  256. should: 'foo ^ #( 1 2 ) at: 1 put: 3; yourself'
  257. return: #(3 2)
  258. !
  259. testNestedIfTrue
  260. self should: 'foo ^ true ifTrue: [ false ifFalse: [ 1 ] ]' return: 1.
  261. self should: 'foo ^ true ifTrue: [ false ifTrue: [ 1 ] ]' return: nil.
  262. self should: 'foo true ifTrue: [ false ifFalse: [ ^ 1 ] ]' return: 1.
  263. self should: 'foo true ifTrue: [ false ifTrue: [ ^ 1 ] ]' return: receiver.
  264. !
  265. testNestedSends
  266. self should: 'foo ^ (Point x: (Point x: 2 y: 3) y: 4) asString' return: (Point x: (2@3) y: 4) asString
  267. !
  268. testNonLocalReturn
  269. self should: 'foo [ ^ 1 ] value' return: 1.
  270. self should: 'foo [ ^ 1 + 1 ] value' return: 2.
  271. self should: 'foo | a b | a := 1. b := 2. [ ^ a + b ] value. self halt' return: 3.
  272. self should: 'foo [ :x | ^ x + x ] value: 4. ^ 2' return: 8
  273. !
  274. testPascalCaseGlobal
  275. self should: 'foo ^Object' return: (Smalltalk globals at: 'Object').
  276. self should: 'foo ^NonExistent' return: nil
  277. !
  278. testRootSuperSend
  279. self
  280. should: 'foo ^ super class'
  281. receiver: ProtoObject new
  282. raise: MessageNotUnderstood
  283. !
  284. testSendReceiverAndArgumentsOrdered
  285. self should: 'foo
  286. | x |
  287. x := 1.
  288. ^ Array with: x with: (true ifTrue: [ x := 2 ])
  289. ' return: #(1 2).
  290. self should: 'foo
  291. | x |
  292. x := Array.
  293. ^ x with: x with: (true ifTrue: [ x := 2 ])
  294. ' return: {Array. 2}.
  295. !
  296. testSuperSend
  297. self
  298. should: 'foo ^ super isBoolean'
  299. receiver: true
  300. return: false
  301. !
  302. testTempVariables
  303. self should: 'foo | a | ^ a' return: nil.
  304. self should: 'foo | AVariable | ^ AVariable' return: nil.
  305. self should: 'foo | a b c | ^ c' return: nil.
  306. self should: 'foo | a | [ | d | ^ d ] value' return: nil.
  307. self should: 'foo | a | a:= 1. ^ a' return: 1.
  308. self should: 'foo | AVariable | AVariable := 1. ^ AVariable' return: 1.
  309. !
  310. testThisContext
  311. self should: 'foo ^ [ thisContext ] value outerContext == thisContext' return: true
  312. !
  313. testifFalse
  314. self should: 'foo true ifFalse: [ ^ 1 ]' return: receiver.
  315. self should: 'foo false ifFalse: [ ^ 2 ]' return: 2.
  316. self should: 'foo ^ true ifFalse: [ 1 ]' return: nil.
  317. self should: 'foo ^ false ifFalse: [ 2 ]' return: 2.
  318. !
  319. testifFalseIfTrue
  320. self should: 'foo true ifFalse: [ ^ 1 ] ifTrue: [ ^ 2 ]' return: 2.
  321. self should: 'foo false ifFalse: [ ^ 2 ] ifTrue: [ ^1 ]' return: 2.
  322. self should: 'foo ^ true ifFalse: [ 1 ] ifTrue: [ 2 ]' return: 2.
  323. self should: 'foo ^ false ifFalse: [ 2 ] ifTrue: [ 1 ]' return: 2.
  324. !
  325. testifNil
  326. self should: 'foo ^ 1 ifNil: [ 2 ]' return: 1.
  327. self should: 'foo ^ nil ifNil: [ 2 ]' return: 2.
  328. self should: 'foo 1 ifNil: [ ^ 2 ]' return: receiver.
  329. self should: 'foo nil ifNil: [ ^ 2 ]' return: 2.
  330. !
  331. testifNilIfNotNil
  332. self should: 'foo ^ 1 ifNil: [ 2 ] ifNotNil: [ 3 ]' return: 3.
  333. self should: 'foo ^ nil ifNil: [ 2 ] ifNotNil: [ 3 ]' return: 2.
  334. self should: 'foo 1 ifNil: [ ^ 2 ] ifNotNil: [ ^3 ]' return: 3.
  335. self should: 'foo nil ifNil: [ ^ 2 ] ifNotNil: [ ^3 ]' return: 2.
  336. !
  337. testifNotNil
  338. self should: 'foo ^ 1 ifNotNil: [ 2 ]' return: 2.
  339. self should: 'foo ^ nil ifNotNil: [ 2 ]' return: nil.
  340. self should: 'foo 1 ifNotNil: [ ^ 2 ]' return: 2.
  341. self should: 'foo nil ifNotNil: [ ^ 2 ]' return: receiver.
  342. !
  343. testifNotNilWithArgument
  344. self should: 'foo ^ 1 ifNotNil: [ :val | val + 2 ]' return: 3.
  345. self should: 'foo ^ nil ifNotNil: [ :val | val + 2 ]' return: nil.
  346. self should: 'foo ^ 1 ifNil: [ 5 ] ifNotNil: [ :val | val + 2 ]' return: 3.
  347. self should: 'foo ^ nil ifNil: [ 5 ] ifNotNil: [ :val | val + 2 ]' return: 5.
  348. self should: 'foo ^ 1 ifNotNil: [ :val | val + 2 ] ifNil: [ 5 ]' return: 3.
  349. self should: 'foo ^ nil ifNotNil: [ :val | val + 2 ] ifNil: [ 5 ]' return: 5
  350. !
  351. testifTrue
  352. self should: 'foo false ifTrue: [ ^ 1 ]' return: receiver.
  353. self should: 'foo true ifTrue: [ ^ 2 ]' return: 2.
  354. self should: 'foo ^ false ifTrue: [ 1 ]' return: nil.
  355. self should: 'foo ^ true ifTrue: [ 2 ]' return: 2.
  356. !
  357. testifTrueIfFalse
  358. self should: 'foo false ifTrue: [ ^ 1 ] ifFalse: [ ^2 ]' return: 2.
  359. self should: 'foo true ifTrue: [ ^ 1 ] ifFalse: [ ^ 2 ]' return: 1.
  360. self should: 'foo ^ false ifTrue: [ 2 ] ifFalse: [ 1 ]' return: 1.
  361. self should: 'foo ^ true ifTrue: [ 2 ] ifFalse: [ 1 ]' return: 2.
  362. ! !
  363. CodeGeneratorTest subclass: #ASTInterpreterTest
  364. instanceVariableNames: ''
  365. package: 'Compiler-Tests'!
  366. !ASTInterpreterTest methodsFor: 'parsing'!
  367. analyze: aNode forClass: aClass
  368. (SemanticAnalyzer on: aClass) visit: aNode.
  369. ^ aNode
  370. !
  371. parse: aString
  372. ^ Smalltalk parse: aString
  373. !
  374. parse: aString forClass: aClass
  375. ^ self analyze: (self parse: aString) forClass: aClass
  376. ! !
  377. !ASTInterpreterTest methodsFor: 'private'!
  378. interpret: aString receiver: anObject withArguments: aDictionary
  379. "The food is a methodNode. Interpret the sequenceNode only"
  380. | ctx ast interpreter |
  381. interpreter := ASTInterpreter new.
  382. ast := self parse: aString forClass: anObject class.
  383. ctx := AIContext new
  384. receiver: anObject;
  385. interpreter: interpreter;
  386. yourself.
  387. "Define locals for the context"
  388. ast sequenceNode ifNotNil: [ :sequence |
  389. sequence temps do: [ :each |
  390. ctx defineLocal: each ] ].
  391. aDictionary keysAndValuesDo: [ :key :value |
  392. ctx localAt: key put: value ].
  393. ^ interpreter
  394. context: ctx;
  395. node: ast nextChild;
  396. proceed;
  397. result
  398. ! !
  399. !ASTInterpreterTest methodsFor: 'testing'!
  400. should: aString receiver: anObject return: aResult
  401. receiver := anObject.
  402. ^ self
  403. assert: (self interpret: aString receiver: receiver withArguments: #{})
  404. equals: aResult
  405. ! !
  406. ASTInterpreterTest subclass: #ASTDebuggerTest
  407. instanceVariableNames: ''
  408. package: 'Compiler-Tests'!
  409. !ASTDebuggerTest methodsFor: 'private'!
  410. interpret: aString receiver: anObject withArguments: aDictionary
  411. | ctx ast debugger |
  412. ctx := AIContext new
  413. receiver: anObject;
  414. interpreter: ASTInterpreter new;
  415. yourself.
  416. ast := self parse: aString forClass: anObject class.
  417. "Define locals for the context"
  418. ast sequenceNode ifNotNil: [ :sequence |
  419. sequence temps do: [ :each |
  420. ctx defineLocal: each ] ].
  421. aDictionary keysAndValuesDo: [ :key :value |
  422. ctx localAt: key put: value ].
  423. ctx interpreter context: ctx.
  424. ctx interpreter node: ast nextChild.
  425. debugger := ASTDebugger context: ctx.
  426. ^ debugger
  427. proceed;
  428. result
  429. ! !
  430. CodeGeneratorTest subclass: #InliningCodeGeneratorTest
  431. instanceVariableNames: ''
  432. package: 'Compiler-Tests'!
  433. !InliningCodeGeneratorTest methodsFor: 'accessing'!
  434. codeGeneratorClass
  435. ^ InliningCodeGenerator
  436. ! !
  437. TestCase subclass: #ScopeVarTest
  438. instanceVariableNames: ''
  439. package: 'Compiler-Tests'!
  440. !ScopeVarTest methodsFor: 'tests'!
  441. testClassRefVar
  442. | node |
  443. node := VariableNode new
  444. value: 'Object';
  445. yourself.
  446. SemanticAnalyzer new
  447. pushScope: MethodLexicalScope new;
  448. visit: node.
  449. self assert: node binding isClassRefVar
  450. !
  451. testInstanceVar
  452. | node scope |
  453. node := VariableNode new
  454. value: 'bzzz';
  455. yourself.
  456. scope := MethodLexicalScope new.
  457. scope addIVar: 'bzzz'.
  458. self assert: (scope bindingFor: node) isInstanceVar
  459. !
  460. testPseudoVar
  461. | node pseudoVars |
  462. pseudoVars := #('self' 'super' 'true' 'false' 'nil').
  463. pseudoVars do: [:each |
  464. node := VariableNode new
  465. value: each;
  466. yourself.
  467. self assert: (MethodLexicalScope new bindingFor: node) isPseudoVar]
  468. !
  469. testTempVar
  470. | node scope |
  471. node := VariableNode new
  472. value: 'bzzz';
  473. yourself.
  474. scope := MethodLexicalScope new.
  475. scope addTemp: 'bzzz'.
  476. self assert: (scope bindingFor: node) isTempVar
  477. !
  478. testUnknownVar
  479. | node |
  480. node := VariableNode new
  481. value: 'bzzz';
  482. yourself.
  483. self assert: (MethodLexicalScope new bindingFor: node) isNil
  484. ! !
  485. TestCase subclass: #SemanticAnalyzerTest
  486. instanceVariableNames: 'analyzer'
  487. package: 'Compiler-Tests'!
  488. !SemanticAnalyzerTest methodsFor: 'running'!
  489. setUp
  490. analyzer := SemanticAnalyzer on: Object
  491. ! !
  492. !SemanticAnalyzerTest methodsFor: 'tests'!
  493. testAssignment
  494. | src ast |
  495. src := 'foo self := 1'.
  496. ast := Smalltalk parse: src.
  497. self should: [analyzer visit: ast] raise: InvalidAssignmentError
  498. !
  499. testNonLocalReturn
  500. | src ast |
  501. src := 'foo | a | a + 1. ^ a'.
  502. ast := Smalltalk parse: src.
  503. analyzer visit: ast.
  504. self deny: ast scope hasNonLocalReturn
  505. !
  506. testNonLocalReturn2
  507. | src ast |
  508. src := 'foo | a | a + 1. [ [ ^ a] ]'.
  509. ast := Smalltalk parse: src.
  510. analyzer visit: ast.
  511. self assert: ast scope hasNonLocalReturn
  512. !
  513. testScope
  514. | src ast |
  515. src := 'foo | a | a + 1. [ | b | b := a ]'.
  516. ast := Smalltalk parse: src.
  517. analyzer visit: ast.
  518. self deny: ast nodes first nodes last scope == ast scope.
  519. !
  520. testScope2
  521. | src ast |
  522. src := 'foo | a | a + 1. [ [ | b | b := a ] ]'.
  523. ast := Smalltalk parse: src.
  524. analyzer visit: ast.
  525. self deny: ast nodes first nodes last nodes first nodes first scope == ast scope.
  526. !
  527. testScopeLevel
  528. | src ast |
  529. src := 'foo | a | a + 1. [ [ | b | b := a ] ]'.
  530. ast := Smalltalk parse: src.
  531. analyzer visit: ast.
  532. self assert: ast scope scopeLevel equals: 1.
  533. self assert: ast nodes first nodes last nodes first nodes first scope scopeLevel equals: 3
  534. !
  535. testUnknownVariables
  536. | src ast |
  537. src := 'foo | a | b + a'.
  538. ast := Smalltalk parse: src.
  539. self should: [ analyzer visit: ast ] raise: UnknownVariableError
  540. !
  541. testUnknownVariablesWithScope
  542. | src ast |
  543. src := 'foo | a b | [ c + 1. [ a + 1. d + 1 ]]'.
  544. ast := Smalltalk parse: src.
  545. self should: [ analyzer visit: ast ] raise: UnknownVariableError
  546. !
  547. testVariableShadowing
  548. | src ast |
  549. src := 'foo | a | a + 1'.
  550. ast := Smalltalk parse: src.
  551. analyzer visit: ast
  552. !
  553. testVariableShadowing2
  554. | src ast |
  555. src := 'foo | a | a + 1. [ | a | a := 2 ]'.
  556. ast := Smalltalk parse: src.
  557. self should: [analyzer visit: ast] raise: ShadowingVariableError
  558. !
  559. testVariableShadowing3
  560. | src ast |
  561. src := 'foo | a | a + 1. [ | b | b := 2 ]'.
  562. ast := Smalltalk parse: src.
  563. analyzer visit: ast
  564. !
  565. testVariableShadowing4
  566. | src ast |
  567. src := 'foo | a | a + 1. [ [ [ | b | b := 2 ] ] ]'.
  568. ast := Smalltalk parse: src.
  569. analyzer visit: ast
  570. !
  571. testVariableShadowing5
  572. | src ast |
  573. src := 'foo | a | a + 1. [ [ [ | a | a := 2 ] ] ]'.
  574. ast := Smalltalk parse: src.
  575. self should: [analyzer visit: ast] raise: ShadowingVariableError
  576. !
  577. testVariablesLookup
  578. | src ast |
  579. src := 'foo | a | a + 1. [ | b | b := a ]'.
  580. ast := Smalltalk parse: src.
  581. analyzer visit: ast.
  582. "Binding for `a` in the message send"
  583. self assert: ast nodes first nodes first receiver binding isTempVar.
  584. self assert: ast nodes first nodes first receiver binding scope == ast scope.
  585. "Binding for `b`"
  586. self assert: ast nodes first nodes last nodes first nodes first left binding isTempVar.
  587. self assert: ast nodes first nodes last nodes first nodes first left binding scope == ast nodes first nodes last scope.
  588. ! !
  589. SemanticAnalyzerTest subclass: #AISemanticAnalyzerTest
  590. instanceVariableNames: ''
  591. package: 'Compiler-Tests'!
  592. !AISemanticAnalyzerTest methodsFor: 'running'!
  593. setUp
  594. analyzer := (AISemanticAnalyzer on: Object)
  595. context: (AIContext new
  596. defineLocal: 'local';
  597. localAt: 'local' put: 3;
  598. yourself);
  599. yourself
  600. ! !
  601. !AISemanticAnalyzerTest methodsFor: 'tests'!
  602. testContextVariables
  603. | src ast |
  604. src := 'foo | a | local + a'.
  605. ast := Smalltalk parse: src.
  606. self shouldnt: [ analyzer visit: ast ] raise: UnknownVariableError
  607. ! !