| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835 | 
							- Smalltalk current createPackage: 'Compiler-Core' properties: #{}!
 
- Object subclass: #Compiler
 
- 	instanceVariableNames: 'currentClass source unknownVariables codeGeneratorClass'
 
- 	package: 'Compiler-Core'!
 
- !Compiler commentStamp!
 
- I provide the public interface for compiling Amber source code into JavaScript.
 
- The code generator used to produce JavaScript can be plugged with `#codeGeneratorClass`. 
 
- The default code generator is an instance of `InlinedCodeGenerator`!
 
- !Compiler methodsFor: 'accessing'!
 
- codeGeneratorClass
 
- 	^codeGeneratorClass ifNil: [InliningCodeGenerator]
 
- !
 
- codeGeneratorClass: aClass
 
- 	codeGeneratorClass := aClass
 
- !
 
- currentClass
 
- 	^currentClass
 
- !
 
- currentClass: aClass
 
- 	currentClass := aClass
 
- !
 
- source
 
- 	^source ifNil: ['']
 
- !
 
- source: aString
 
- 	source := aString
 
- !
 
- unknownVariables
 
- 	^unknownVariables
 
- !
 
- unknownVariables: aCollection
 
- 	unknownVariables := aCollection
 
- ! !
 
- !Compiler methodsFor: 'compiling'!
 
- compile: aString
 
- 	^self compileNode: (self parse: aString)
 
- !
 
- compile: aString forClass: aClass
 
- 	self currentClass: aClass.
 
- 	self source: aString.
 
- 	^self compile: aString
 
- !
 
- compileExpression: aString
 
- 	self currentClass: DoIt.
 
- 	self source: 'doIt ^[', aString, '] value'.
 
- 	^self compileNode: (self parse: self source)
 
- !
 
- compileNode: aNode
 
- 	| generator result |
 
- 	generator := self codeGeneratorClass new.
 
- 	generator
 
- 		source: self source;
 
- 		currentClass: self currentClass.
 
- 	result := generator compileNode: aNode.
 
- 	self unknownVariables: #().
 
- 	^result
 
- !
 
- eval: aString
 
- 	<return eval(aString)>
 
- !
 
- evaluateExpression: aString
 
- 	"Unlike #eval: evaluate a Smalltalk expression and answer the returned object"
 
- 	| result |
 
- 	DoIt addCompiledMethod: (self eval: (self compileExpression: aString)).
 
- 	result := DoIt new doIt.
 
- 	DoIt removeCompiledMethod: (DoIt methodDictionary at: 'doIt').
 
- 	^result
 
- !
 
- install: aString forClass: aBehavior category: anotherString
 
- 	| compiled |
 
- 	compiled := self eval: (self compile: aString forClass: aBehavior).
 
- 	compiled category: anotherString.
 
- 	aBehavior addCompiledMethod: compiled.
 
-     self setupClass: aBehavior.
 
- 	^compiled
 
- !
 
- parse: aString
 
-     ^Smalltalk current parse: aString
 
- !
 
- parseExpression: aString
 
-     ^self parse: 'doIt ^[', aString, '] value'
 
- !
 
- recompile: aClass
 
- 	aClass methodDictionary do: [:each |
 
- 		console log: aClass name, ' >> ', each selector.
 
- 		self install: each source forClass: aClass category: each category].
 
- 	self setupClass: aClass.
 
- 	aClass isMetaclass ifFalse: [self recompile: aClass class]
 
- !
 
- recompileAll
 
- 	Smalltalk current classes do: [:each |
 
- 		Transcript show: each; cr.
 
- 		[self recompile: each] valueWithTimeout: 100]
 
- !
 
- setupClass: aClass
 
- 	<smalltalk.init(aClass)>
 
- ! !
 
- !Compiler class methodsFor: 'compiling'!
 
- recompile: aClass
 
- 	self new recompile: aClass
 
- !
 
- recompileAll
 
- 	Smalltalk current classes do: [:each |
 
- 		self recompile: each]
 
- ! !
 
- Object subclass: #DoIt
 
- 	instanceVariableNames: ''
 
- 	package: 'Compiler-Core'!
 
- !DoIt commentStamp!
 
- `DoIt` is the class used to compile and evaluate expressions. See `Compiler >> evaluateExpression:`.!
 
- Object subclass: #NodeVisitor
 
- 	instanceVariableNames: ''
 
- 	package: 'Compiler-Core'!
 
- !NodeVisitor commentStamp!
 
- I am the abstract super class of all AST node visitors.!
 
- !NodeVisitor methodsFor: 'visiting'!
 
- visit: aNode
 
- 	^ aNode accept: self
 
- !
 
- visitAll: aCollection
 
- 	^ aCollection do: [ :each | self visit: each ]
 
- !
 
- visitAssignmentNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitBlockNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitBlockSequenceNode: aNode
 
- 	^ self visitSequenceNode: aNode
 
- !
 
- visitCascadeNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitClassReferenceNode: aNode
 
- 	^ self visitVariableNode: aNode
 
- !
 
- visitDynamicArrayNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitDynamicDictionaryNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitJSStatementNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitMethodNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitNode: aNode
 
- 	^ self visitAll: aNode nodes
 
- !
 
- visitReturnNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitSendNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitSequenceNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitValueNode: aNode
 
- 	^ self visitNode: aNode
 
- !
 
- visitVariableNode: aNode
 
- 	^ self visitNode: aNode
 
- ! !
 
- NodeVisitor subclass: #AbstractCodeGenerator
 
- 	instanceVariableNames: 'currentClass source'
 
- 	package: 'Compiler-Core'!
 
- !AbstractCodeGenerator commentStamp!
 
- I am the abstract super class of all code generators and provide their common API.!
 
- !AbstractCodeGenerator methodsFor: 'accessing'!
 
- classNameFor: aClass
 
- 	^aClass isMetaclass
 
- 	    ifTrue: [aClass instanceClass name, '.klass']
 
- 	    ifFalse: [
 
- 		aClass isNil
 
- 		    ifTrue: ['nil']
 
- 		    ifFalse: [aClass name]]
 
- !
 
- currentClass
 
- 	^currentClass
 
- !
 
- currentClass: aClass
 
- 	currentClass := aClass
 
- !
 
- pseudoVariables
 
- 	^#('self' 'super' 'true' 'false' 'nil' 'thisContext')
 
- !
 
- safeVariableNameFor: aString
 
- 	^(Smalltalk current reservedWords includes: aString)
 
- 		ifTrue: [aString, '_']
 
- 		ifFalse: [aString]
 
- !
 
- source
 
- 	^source ifNil: ['']
 
- !
 
- source: aString
 
- 	source := aString
 
- ! !
 
- !AbstractCodeGenerator methodsFor: 'compiling'!
 
- compileNode: aNode
 
- 	self subclassResponsibility
 
- ! !
 
- AbstractCodeGenerator subclass: #CodeGenerator
 
- 	instanceVariableNames: ''
 
- 	package: 'Compiler-Core'!
 
- !CodeGenerator commentStamp!
 
- I am a basic code generator. I generate a valid JavaScript output, but no not perform any inlining.
 
- See `InliningCodeGenerator` for an optimized JavaScript code generation.!
 
- !CodeGenerator methodsFor: 'compiling'!
 
- compileNode: aNode
 
- 	| ir stream |
 
- 	self semanticAnalyzer visit: aNode.
 
- 	ir := self translator visit: aNode.
 
- 	^ self irTranslator
 
- 		visit: ir;
 
- 		contents
 
- !
 
- irTranslator
 
- 	^ IRJSTranslator new
 
- !
 
- semanticAnalyzer
 
- 	^ SemanticAnalyzer on: self currentClass
 
- !
 
- translator
 
- 	^ IRASTTranslator new
 
- 		source: self source;
 
- 		theClass: self currentClass;
 
- 		yourself
 
- ! !
 
- AbstractCodeGenerator subclass: #FunCodeGenerator
 
- 	instanceVariableNames: 'stream nestedBlocks earlyReturn currentSelector unknownVariables tempVariables messageSends referencedClasses classReferenced argVariables'
 
- 	package: 'Compiler-Core'!
 
- !FunCodeGenerator methodsFor: 'accessing'!
 
- argVariables
 
- 	^argVariables copy
 
- !
 
- knownVariables
 
- 	^self pseudoVariables 
 
- 		addAll: self tempVariables;
 
- 		addAll: self argVariables;
 
- 		yourself
 
- !
 
- tempVariables
 
- 	^tempVariables copy
 
- !
 
- unknownVariables
 
- 	^unknownVariables copy
 
- ! !
 
- !FunCodeGenerator methodsFor: 'compiling'!
 
- compileNode: aNode
 
- 	stream := '' writeStream.
 
- 	self visit: aNode.
 
- 	^stream contents
 
- ! !
 
- !FunCodeGenerator methodsFor: 'initialization'!
 
- initialize
 
- 	super initialize.
 
- 	stream := '' writeStream. 
 
- 	unknownVariables := #().
 
- 	tempVariables := #().
 
- 	argVariables := #().
 
- 	messageSends := #().
 
- 	classReferenced := #()
 
- ! !
 
- !FunCodeGenerator methodsFor: 'optimizations'!
 
- checkClass: aClassName for: receiver
 
-         stream nextPutAll: '((($receiver = ', receiver, ').klass === smalltalk.', aClassName, ') ? '
 
- !
 
- inline: aSelector receiver: receiver argumentNodes: aCollection
 
-         | inlined |
 
-         inlined := false.
 
- 	"-- Booleans --"
 
- 	(aSelector = 'ifFalse:') ifTrue: [
 
- 		aCollection first isBlockNode ifTrue: [
 
-                 	self checkClass: 'Boolean' for: receiver.
 
-                 	stream nextPutAll: '(!! $receiver ? '.
 
-                 	self visit: aCollection first.
 
-           		stream nextPutAll: '() : nil)'.
 
-                 	inlined := true]].
 
- 	(aSelector = 'ifTrue:') ifTrue: [
 
- 		aCollection first isBlockNode ifTrue: [
 
-                 	self checkClass: 'Boolean' for: receiver.
 
-                 	stream nextPutAll: '($receiver ? '.
 
-                 	self visit: aCollection first.
 
-           		stream nextPutAll: '() : nil)'.
 
-                 	inlined := true]].
 
- 	(aSelector = 'ifTrue:ifFalse:') ifTrue: [
 
- 		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [
 
-                 	self checkClass: 'Boolean' for: receiver.
 
-                 	stream nextPutAll: '($receiver ? '.
 
-                 	self visit: aCollection first.
 
-           		stream nextPutAll: '() : '.
 
-           		self visit: aCollection second.
 
-           		stream nextPutAll: '())'.
 
-                 	inlined := true]].
 
- 	(aSelector = 'ifFalse:ifTrue:') ifTrue: [
 
- 		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [
 
-                 	self checkClass: 'Boolean' for: receiver.
 
-                 	stream nextPutAll: '(!! $receiver ? '.
 
-                 	self visit: aCollection first.
 
-           		stream nextPutAll: '() : '.
 
-           		self visit: aCollection second.
 
-           		stream nextPutAll: '())'.
 
-                 	inlined := true]].
 
- 	"-- Numbers --"
 
- 	(aSelector = '<') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver <'.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
- 	(aSelector = '<=') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver <='.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
- 	(aSelector = '>') ifTrue: [ 
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver >'.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
- 	(aSelector = '>=') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver >='.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
-         (aSelector = '+') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver +'.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
-         (aSelector = '-') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver -'.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
-         (aSelector = '*') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver *'.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
-         (aSelector = '/') ifTrue: [
 
-                 self checkClass: 'Number' for: receiver.
 
-                 stream nextPutAll: '$receiver /'.
 
-                 self visit: aCollection first.
 
-                 inlined := true].
 
-         ^inlined
 
- !
 
- inlineLiteral: aSelector receiverNode: anObject argumentNodes: aCollection
 
-         | inlined |
 
-         inlined := false.
 
-  
 
- 	"-- BlockClosures --"
 
- 	(aSelector = 'whileTrue:') ifTrue: [
 
-           	(anObject isBlockNode and: [aCollection first isBlockNode]) ifTrue: [
 
-                 	stream nextPutAll: '(function(){while('.
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: '()) {'.
 
-                 	self visit: aCollection first.
 
-           		stream nextPutAll: '()}})()'.
 
-                 	inlined := true]].
 
- 	(aSelector = 'whileFalse:') ifTrue: [
 
-           	(anObject isBlockNode and: [aCollection first isBlockNode]) ifTrue: [
 
-                 	stream nextPutAll: '(function(){while(!!'.
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: '()) {'.
 
-                 	self visit: aCollection first.
 
-           		stream nextPutAll: '()}})()'.
 
-                 	inlined := true]].
 
- 	(aSelector = 'whileTrue') ifTrue: [
 
-           	anObject isBlockNode ifTrue: [
 
-                 	stream nextPutAll: '(function(){while('.
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: '()) {}})()'.
 
-                 	inlined := true]].
 
- 	(aSelector = 'whileFalse') ifTrue: [
 
-           	anObject isBlockNode ifTrue: [
 
-                 	stream nextPutAll: '(function(){while(!!'.
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: '()) {}})()'.
 
-                 	inlined := true]].
 
- 	"-- Numbers --"
 
- 	(aSelector = '+') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' + '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '-') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' - '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '*') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' * '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '/') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' / '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '<') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' < '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '<=') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' <= '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '>') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' > '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
- 	(aSelector = '>=') ifTrue: [
 
-           	(self isNode: anObject ofClass: Number) ifTrue: [
 
-                   	self visit: anObject.
 
-                   	stream nextPutAll: ' >= '.
 
-                 	self visit: aCollection first.
 
-                 	inlined := true]].
 
-                 	   
 
- 	"-- UndefinedObject --"
 
- 	(aSelector = 'ifNil:') ifTrue: [
 
- 		aCollection first isBlockNode ifTrue: [
 
-           		stream nextPutAll: '(($receiver = '.
 
-           		self visit: anObject.
 
-           		stream nextPutAll: ') == nil || $receiver == undefined) ? '.
 
-                   	self visit: aCollection first.
 
-                   	stream nextPutAll: '() : $receiver'.
 
-                   	inlined := true]].
 
- 	(aSelector = 'ifNotNil:') ifTrue: [
 
- 		aCollection first isBlockNode ifTrue: [
 
-           		stream nextPutAll: '(($receiver = '.
 
-           		self visit: anObject.
 
-           		stream nextPutAll: ') !!= nil && $receiver !!= undefined) ? '.
 
-                   	self visit: aCollection first.
 
-                   	stream nextPutAll: '() : nil'.
 
-                   	inlined := true]].
 
- 	(aSelector = 'ifNil:ifNotNil:') ifTrue: [
 
- 		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [
 
-           		stream nextPutAll: '(($receiver = '.
 
-           		self visit: anObject.
 
-           		stream nextPutAll: ') == nil || $receiver == undefined) ? '.
 
-                   	self visit: aCollection first.
 
-                   	stream nextPutAll: '() : '.
 
-                   	self visit: aCollection second.
 
-                   	stream nextPutAll: '()'.
 
-                   	inlined := true]].
 
- 	(aSelector = 'ifNotNil:ifNil:') ifTrue: [
 
- 		(aCollection first isBlockNode and: [aCollection second isBlockNode]) ifTrue: [
 
-           		stream nextPutAll: '(($receiver = '.
 
-           		self visit: anObject.
 
-           		stream nextPutAll: ') == nil || $receiver == undefined) ? '.
 
-                   	self visit: aCollection second.
 
-                   	stream nextPutAll: '() : '.
 
-                   	self visit: aCollection first.
 
-                   	stream nextPutAll: '()'.
 
-                   	inlined := true]].
 
-                  
 
-         ^inlined
 
- !
 
- isNode: aNode ofClass: aClass
 
- 	^aNode isValueNode and: [
 
-           	aNode value class = aClass or: [
 
-           		aNode value = 'self' and: [self currentClass = aClass]]]
 
- ! !
 
- !FunCodeGenerator methodsFor: 'testing'!
 
- performOptimizations
 
- 	^self class performOptimizations
 
- ! !
 
- !FunCodeGenerator methodsFor: 'visiting'!
 
- send: aSelector to: aReceiver arguments: aCollection superSend: aBoolean
 
- 	^String streamContents: [:str || tmp |
 
-         	tmp := stream.
 
- 		str nextPutAll: 'smalltalk.send('.
 
- 		str nextPutAll: aReceiver.
 
- 		str nextPutAll: ', "', aSelector asSelector, '", ['.
 
-                 stream := str.
 
- 		aCollection
 
- 	    		do: [:each | self visit: each]
 
- 	    		separatedBy: [stream nextPutAll: ', '].
 
-                 stream := tmp.
 
-                 str nextPutAll: ']'.
 
- 		aBoolean ifTrue: [
 
- 			str nextPutAll: ', smalltalk.', (self classNameFor: self currentClass), '.superclass || nil'].
 
- 		str nextPutAll: ')']
 
- !
 
- visit: aNode
 
- 	aNode accept: self
 
- !
 
- visitAssignmentNode: aNode
 
- 	stream nextPutAll: '('.
 
- 	self visit: aNode left.
 
- 	stream nextPutAll: '='.
 
- 	self visit: aNode right.
 
- 	stream nextPutAll: ')'
 
- !
 
- visitBlockNode: aNode
 
- 	stream nextPutAll: '(function('.
 
- 	aNode parameters 
 
- 	    do: [:each |
 
- 		tempVariables add: each.
 
- 		stream nextPutAll: each]
 
- 	    separatedBy: [stream nextPutAll: ', '].
 
- 	stream nextPutAll: '){'.
 
- 	aNode nodes do: [:each | self visit: each].
 
- 	stream nextPutAll: '})'
 
- !
 
- visitBlockSequenceNode: aNode
 
- 	| index |
 
- 	nestedBlocks := nestedBlocks + 1.
 
- 	aNode nodes isEmpty
 
- 	    ifTrue: [
 
- 		stream nextPutAll: 'return nil;']
 
- 	    ifFalse: [
 
- 		aNode temps do: [:each | | temp |
 
-                     temp := self safeVariableNameFor: each.
 
- 		    tempVariables add: temp.
 
- 		    stream nextPutAll: 'var ', temp, '=nil;'; lf].
 
- 		index := 0.
 
- 		aNode nodes do: [:each |
 
- 		    index := index + 1.
 
- 		    index = aNode nodes size ifTrue: [
 
- 			stream nextPutAll: 'return '].
 
- 		    self visit: each.
 
- 		    stream nextPutAll: ';']].
 
- 	nestedBlocks := nestedBlocks - 1
 
- !
 
- visitCascadeNode: aNode
 
- 	| index |
 
- 	index := 0.
 
- 	(tempVariables includes: '$rec') ifFalse: [
 
- 		tempVariables add: '$rec'].
 
- 	stream nextPutAll: '(function($rec){'.
 
- 	aNode nodes do: [:each |
 
- 	    index := index + 1.
 
- 	    index = aNode nodes size ifTrue: [
 
- 		stream nextPutAll: 'return '].
 
- 	    each receiver: (VariableNode new value: '$rec').
 
- 	    self visit: each.
 
- 	    stream nextPutAll: ';'].
 
- 	stream nextPutAll: '})('.
 
- 	self visit: aNode receiver.
 
- 	stream nextPutAll: ')'
 
- !
 
- visitClassReferenceNode: aNode
 
- 	(referencedClasses includes: aNode value) ifFalse: [
 
- 		referencedClasses add: aNode value].
 
- 	stream nextPutAll: '(smalltalk.', aNode value, ' || ', aNode value, ')'
 
- !
 
- visitDynamicArrayNode: aNode
 
- 	stream nextPutAll: '['.
 
- 	aNode nodes 
 
- 		do: [:each | self visit: each]
 
- 		separatedBy: [stream nextPutAll: ','].
 
- 	stream nextPutAll: ']'
 
- !
 
- visitDynamicDictionaryNode: aNode
 
- 	stream nextPutAll: 'smalltalk.HashedCollection._fromPairs_(['.
 
- 		aNode nodes 
 
- 			do: [:each | self visit: each]
 
- 			separatedBy: [stream nextPutAll: ','].
 
- 		stream nextPutAll: '])'
 
- !
 
- visitFailure: aFailure
 
- 	self error: aFailure asString
 
- !
 
- visitJSStatementNode: aNode
 
- 	stream nextPutAll: aNode source
 
- !
 
- visitMethodNode: aNode
 
- 	| str currentSelector | 
 
- 	currentSelector := aNode selector asSelector.
 
- 	nestedBlocks := 0.
 
- 	earlyReturn := false.
 
- 	messageSends := #().
 
- 	referencedClasses := #().
 
- 	unknownVariables := #().
 
- 	tempVariables := #().
 
- 	argVariables := #().
 
- 	stream 
 
- 	    nextPutAll: 'smalltalk.method({'; lf;
 
- 	    nextPutAll: 'selector: "', aNode selector, '",'; lf.
 
- 	stream nextPutAll: 'source: ', self source asJavascript, ',';lf.
 
- 	stream nextPutAll: 'fn: function('.
 
- 	aNode arguments 
 
- 	    do: [:each | 
 
- 		argVariables add: each.
 
- 		stream nextPutAll: each]
 
- 	    separatedBy: [stream nextPutAll: ', '].
 
- 	stream 
 
- 	    nextPutAll: '){'; lf;
 
- 	    nextPutAll: 'var self=this;'; lf.
 
- 	str := stream.
 
- 	stream := '' writeStream.
 
- 	aNode nodes do: [:each |
 
- 	    self visit: each].
 
- 	earlyReturn ifTrue: [
 
- 	    str nextPutAll: 'var $early={};'; lf; nextPutAll: 'try{'].
 
- 	str nextPutAll: stream contents.
 
- 	stream := str.
 
- 	stream 
 
- 	    lf; 
 
- 	    nextPutAll: 'return self;'.
 
- 	earlyReturn ifTrue: [
 
- 	    stream lf; nextPutAll: '} catch(e) {if(e===$early)return e[0]; throw e}'].
 
- 	stream nextPutAll: '}'.
 
- 	stream 
 
- 		nextPutAll: ',', String lf, 'messageSends: ';
 
- 		nextPutAll: messageSends asJavascript, ','; lf;
 
-           	nextPutAll: 'args: ', argVariables asJavascript, ','; lf;
 
- 		nextPutAll: 'referencedClasses: ['.
 
- 	referencedClasses 
 
- 		do: [:each | stream nextPutAll: each printString]
 
- 		separatedBy: [stream nextPutAll: ','].
 
- 	stream nextPutAll: ']'.
 
- 	stream nextPutAll: '})'
 
- !
 
- visitReturnNode: aNode
 
- 	nestedBlocks > 0 ifTrue: [
 
- 	    earlyReturn := true].
 
- 	nestedBlocks > 0
 
- 	    ifTrue: [
 
- 		stream
 
- 		    nextPutAll: '(function(){throw $early=[']
 
- 	    ifFalse: [stream nextPutAll: 'return '].
 
- 	aNode nodes do: [:each |
 
- 	    self visit: each].
 
- 	nestedBlocks > 0 ifTrue: [
 
- 	    stream nextPutAll: ']})()']
 
- !
 
- visitSendNode: aNode
 
-         | str receiver superSend inlined |
 
-         str := stream.
 
-         (messageSends includes: aNode selector) ifFalse: [
 
-                 messageSends add: aNode selector].
 
-         stream := '' writeStream.
 
-         self visit: aNode receiver.
 
-         superSend := stream contents = 'super'.
 
-         receiver := superSend ifTrue: ['self'] ifFalse: [stream contents].
 
-         stream := str.
 
- 	
 
- 	self performOptimizations 
 
- 		ifTrue: [
 
- 			(self inlineLiteral: aNode selector receiverNode: aNode receiver argumentNodes: aNode arguments) ifFalse: [
 
- 				(self inline: aNode selector receiver: receiver argumentNodes: aNode arguments)
 
-                 			ifTrue: [stream nextPutAll: ' : ', (self send: aNode selector to: '$receiver' arguments: aNode arguments superSend: superSend), ')']
 
-                 			ifFalse: [stream nextPutAll: (self send: aNode selector to: receiver arguments: aNode arguments superSend: superSend)]]]
 
- 		ifFalse: [stream nextPutAll: (self send: aNode selector to: receiver arguments: aNode arguments superSend: superSend)]
 
- !
 
- visitSequenceNode: aNode
 
- 	aNode temps do: [:each || temp |
 
-             temp := self safeVariableNameFor: each.
 
- 	    tempVariables add: temp.
 
- 	    stream nextPutAll: 'var ', temp, '=nil;'; lf].
 
- 	aNode nodes do: [:each |
 
- 	    self visit: each.
 
- 	    stream nextPutAll: ';']
 
- 	    separatedBy: [stream lf]
 
- !
 
- visitValueNode: aNode
 
- 	stream nextPutAll: aNode value asJavascript
 
- !
 
- visitVariableNode: aNode
 
- 	| varName |
 
- 	(self currentClass allInstanceVariableNames includes: aNode value) 
 
- 		ifTrue: [stream nextPutAll: 'self[''@', aNode value, ''']']
 
- 		ifFalse: [
 
-                   	varName := self safeVariableNameFor: aNode value.
 
- 			(self knownVariables includes: varName) 
 
-                   		ifFalse: [
 
-                                   	unknownVariables add: aNode value.
 
-                                   	aNode assigned 
 
-                                   		ifTrue: [stream nextPutAll: varName]
 
-                                   		ifFalse: [stream nextPutAll: '(typeof ', varName, ' == ''undefined'' ? nil : ', varName, ')']]
 
-                   		ifTrue: [
 
-                                   	aNode value = 'thisContext'
 
-                                   		ifTrue: [stream nextPutAll: '(smalltalk.getThisContext())']
 
-                 				ifFalse: [stream nextPutAll: varName]]]
 
- ! !
 
- FunCodeGenerator class instanceVariableNames: 'performOptimizations'!
 
- !FunCodeGenerator class methodsFor: 'accessing'!
 
- performOptimizations
 
- 	^performOptimizations ifNil: [true]
 
- !
 
- performOptimizations: aBoolean
 
- 	performOptimizations := aBoolean
 
- ! !
 
 
  |