1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042 |
- Smalltalk createPackage: 'Compiler-Interpreter'!
- BlockClosure subclass: #AIBlockClosure
- instanceVariableNames: 'node outerContext'
- package: 'Compiler-Interpreter'!
- !AIBlockClosure commentStamp!
- I am a special `BlockClosure` subclass used by an interpreter to interpret a block node.
- While I am polymorphic with `BlockClosure`, some methods such as `#new` will raise interpretation errors. Unlike a `BlockClosure`, my instance are not JavaScript functions.
- Evaluating an instance will result in interpreting the `node` instance variable (instance of `BlockNode`).!
- !AIBlockClosure methodsFor: 'accessing'!
- compiledSource
- "Unlike blocks, the receiver doesn't represent a JS function"
-
- ^ '[ AST Block closure ]'
- !
- numArgs
- ^ node temps size
- ! !
- !AIBlockClosure methodsFor: 'converting'!
- currySelf
- self interpreterError
- ! !
- !AIBlockClosure methodsFor: 'error handling'!
- interpreterError
- ASTInterpreterError signal: 'Method cannot be interpreted by the interpreter.'
- ! !
- !AIBlockClosure methodsFor: 'evaluating'!
- applyTo: anObject arguments: aCollection
- self interpreterError
- !
- value
- ^ self valueWithPossibleArguments: #()
- !
- value: anArgument
- ^ self valueWithPossibleArguments: {anArgument}
- !
- value: firstArgument value: secondArgument
- ^ self valueWithPossibleArguments: {firstArgument . secondArgument}
- !
- value: firstArgument value: secondArgument value: thirdArgument
- ^ self valueWithPossibleArguments: {firstArgument . secondArgument . thirdArgument}
- !
- valueWithPossibleArguments: aCollection
- | context sequenceNode |
- context := outerContext newInnerContext.
- "Interpret a copy of the sequence node to avoid creating a new AIBlockClosure"
- sequenceNode := node dagChildren first copy
- parent: nil;
- yourself.
-
- "Define locals in the context"
- sequenceNode temps do: [ :each |
- context defineLocal: each ].
-
- "Populate the arguments into the context locals"
- node parameters withIndexDo: [ :each :index |
- context defineLocal: each.
- context localAt: each put: (aCollection at: index ifAbsent: [ nil ]) ].
- "Interpret the first node of the BlockSequenceNode"
- context interpreter
- node: sequenceNode;
- enterNode;
- proceed.
-
- outerContext interpreter
- setNonLocalReturnFromContext: context.
-
- ^ context interpreter pop
- ! !
- !AIBlockClosure methodsFor: 'initialization'!
- initializeWithContext: aContext node: aNode
- node := aNode.
- outerContext := aContext
- ! !
- !AIBlockClosure class methodsFor: 'instance creation'!
- forContext: aContext node: aNode
- ^ self new
- initializeWithContext: aContext node: aNode;
- yourself
- ! !
- Object subclass: #AIContext
- instanceVariableNames: 'outerContext innerContext pc locals selector index sendIndexes evaluatedSelector ast interpreter supercall'
- package: 'Compiler-Interpreter'!
- !AIContext commentStamp!
- I am like a `MethodContext`, used by the `ASTInterpreter`.
- Unlike a `MethodContext`, my instances are not read-only.
- When debugging, my instances are created by copying the current `MethodContext` (thisContext)!
- !AIContext methodsFor: 'accessing'!
- defineLocal: aString
- self locals at: aString put: nil
- !
- evaluatedSelector
- ^ evaluatedSelector
- !
- evaluatedSelector: aString
- evaluatedSelector := aString
- !
- index
- ^ index ifNil: [ 0 ]
- !
- index: anInteger
- index := anInteger
- !
- innerContext
- ^ innerContext
- !
- innerContext: anAIContext
- innerContext := anAIContext
- !
- localAt: aString
- "Lookup the local value up to the method context"
- | context |
-
- context := self lookupContextForLocal: aString.
- ^ context basicLocalAt: aString
- !
- localAt: aString ifAbsent: aBlock
- "Lookup the local value up to the method context"
- | context |
-
- context := self
- lookupContextForLocal: aString
- ifNone: [ ^ aBlock value ].
-
- ^ context basicLocalAt: aString
- !
- localAt: aString put: anObject
- | context |
-
- context := self lookupContextForLocal: aString.
- context basicLocalAt: aString put: anObject
- !
- locals
- locals ifNil: [ self initializeLocals ].
-
- ^ locals
- !
- outerContext
- ^ outerContext
- !
- outerContext: anAIContext
- outerContext := anAIContext.
- outerContext ifNotNil: [ :context |
- context innerContext: self ]
- !
- selector
- ^ selector
- !
- selector: aString
- selector := aString
- !
- sendIndexAt: aString
- ^ self sendIndexes at: aString ifAbsent: [ 0 ]
- !
- sendIndexes
- ^ sendIndexes ifNil: [ Dictionary new ]
- !
- sendIndexes: aDictionary
- sendIndexes := aDictionary
- ! !
- !AIContext methodsFor: 'error handling'!
- variableNotFound
- "Error thrown whenever a variable lookup fails"
-
- self error: 'Variable missing'
- ! !
- !AIContext methodsFor: 'evaluating'!
- evaluate: aString on: anEvaluator
- ^ anEvaluator evaluate: aString context: self
- !
- evaluateNode: aNode
- ^ ASTInterpreter new
- context: self;
- node: aNode;
- enterNode;
- proceed;
- result
- ! !
- !AIContext methodsFor: 'factory'!
- newInnerContext
- ^ self class new
- outerContext: self;
- yourself
- ! !
- !AIContext methodsFor: 'initialization'!
- initializeAST
- ast := self method ast.
- (SemanticAnalyzer on: self method methodClass)
- visit: ast
- !
- initializeFromMethodContext: aMethodContext
- self
- evaluatedSelector: aMethodContext evaluatedSelector;
- index: aMethodContext index;
- sendIndexes: aMethodContext sendIndexes;
- receiver: aMethodContext receiver;
- supercall: aMethodContext supercall;
- selector: aMethodContext selector.
-
- aMethodContext outerContext ifNotNil: [ :outer |
- "If the method context is nil, the block was defined in JS, so ignore it"
- outer methodContext ifNotNil: [
- self outerContext: (self class fromMethodContext: aMethodContext outerContext) ].
- aMethodContext locals keysAndValuesDo: [ :key :value |
- self locals at: key put: value ] ]
- !
- initializeInterpreter
- interpreter := ASTInterpreter new
- context: self;
- yourself.
-
- self innerContext ifNotNil: [
- self setupInterpreter: interpreter ]
- !
- initializeLocals
- locals := Dictionary new.
- locals at: 'thisContext' put: self.
- ! !
- !AIContext methodsFor: 'interpreting'!
- arguments
- ^ self ast arguments collect: [ :each |
- self localAt: each ifAbsent: [ self error: 'Argument not in context' ] ]
- !
- ast
- self isBlockContext ifTrue: [
- ^ self outerContext ifNotNil: [ :context | context ast ] ].
- ast ifNil: [ self initializeAST ].
- ^ ast
- !
- basicReceiver
- ^ self localAt: 'self'
- !
- interpreter
- interpreter ifNil: [ self initializeInterpreter ].
- ^ interpreter
- !
- interpreter: anInterpreter
- interpreter := anInterpreter
- !
- receiver: anObject
- self locals at: 'self' put: anObject
- !
- setupInterpreter: anInterpreter
- | currentNode |
-
- "Retrieve the current node"
- currentNode := ASTPCNodeVisitor new
- selector: self evaluatedSelector;
- index: (self sendIndexAt: self evaluatedSelector);
- visit: self ast;
- currentNode.
-
- "Define locals for the context"
- self ast sequenceNode ifNotNil: [ :sequence |
- sequence temps do: [ :each |
- self defineLocal: each ] ].
-
- anInterpreter node: currentNode.
- "Push the send args and receiver to the interpreter stack"
- self innerContext arguments reversed do: [ :each |
- anInterpreter push: each ].
-
- anInterpreter push: (self innerContext receiver)
- !
- supercall
- ^ supercall ifNil: [ false ]
- !
- supercall: aBoolean
- supercall := aBoolean
- ! !
- !AIContext methodsFor: 'private'!
- basicLocalAt: aString
- ^ self locals at: aString
- !
- basicLocalAt: aString put: anObject
- self locals at: aString put: anObject
- !
- lookupContextForLocal: aString
- "Lookup the context defining the local named `aString`
- up to the method context"
- ^ self
- lookupContextForLocal: aString
- ifNone: [ self variableNotFound ]
- !
- lookupContextForLocal: aString ifNone: aBlock
- "Lookup the context defining the local named `aString`
- up to the method context"
- ^ self locals
- at: aString
- ifPresent: [ self ]
- ifAbsent: [
- self outerContext
- ifNil: aBlock
- ifNotNil: [ :context |
- context lookupContextForLocal: aString ] ]
- ! !
- !AIContext methodsFor: 'testing'!
- isTopContext
- ^ self innerContext isNil
- ! !
- !AIContext class methodsFor: 'instance creation'!
- fromMethodContext: aMethodContext
- ^ self new
- initializeFromMethodContext: aMethodContext;
- yourself
- ! !
- SemanticAnalyzer subclass: #AISemanticAnalyzer
- instanceVariableNames: 'context'
- package: 'Compiler-Interpreter'!
- !AISemanticAnalyzer commentStamp!
- I perform the same semantic analysis than `SemanticAnalyzer`, with the difference that provided an `AIContext` context, variables are bound with the context variables.!
- !AISemanticAnalyzer methodsFor: 'accessing'!
- context
- ^ context
- !
- context: anAIContext
- context := anAIContext
- ! !
- !AISemanticAnalyzer methodsFor: 'visiting'!
- visitVariableNode: aNode
- self context
- localAt: aNode value
- ifAbsent: [ ^ super visitVariableNode: aNode ].
- aNode binding: ASTContextVar new
- ! !
- ScopeVar subclass: #ASTContextVar
- instanceVariableNames: 'context'
- package: 'Compiler-Interpreter'!
- !ASTContextVar commentStamp!
- I am a variable defined in a `context`.!
- !ASTContextVar methodsFor: 'accessing'!
- context
- ^ context
- !
- context: anObject
- context := anObject
- ! !
- Object subclass: #ASTDebugger
- instanceVariableNames: 'interpreter context result'
- package: 'Compiler-Interpreter'!
- !ASTDebugger commentStamp!
- I am a stepping debugger interface for Amber code.
- I internally use an instance of `ASTInterpreter` to actually step through node and interpret them.
- My instances are created from an `AIContext` with `ASTDebugger class >> context:`.
- They hold an `AIContext` instance internally, recursive copy of the `MethodContext`.
- ## API
- Use the methods of the `'stepping'` protocol to do stepping.!
- !ASTDebugger methodsFor: 'accessing'!
- context
- ^ context
- !
- context: aContext
- context := aContext
- !
- interpreter
- ^ self context ifNotNil: [ :ctx |
- ctx interpreter ]
- !
- method
- ^ self context method
- !
- node
- ^ self interpreter ifNotNil: [
- self interpreter node ]
- !
- result
- ^ result
- ! !
- !ASTDebugger methodsFor: 'actions'!
- flushInnerContexts
- "When stepping, the inner contexts are not relevent anymore,
- and can be flushed"
-
- self context ifNotNil: [ :cxt |
- cxt innerContext: nil ]
- ! !
- !ASTDebugger methodsFor: 'private'!
- onStep
- "After each step, check if the interpreter is at the end,
- and if it is move to its outer context if any, skipping its
- current node (which was just evaluated by the current
- interpreter).
-
- After each step we also flush inner contexts."
-
- result := self interpreter result.
-
- self interpreter atEnd ifTrue: [
- self context outerContext ifNotNil: [ :outerContext |
- self context: outerContext ].
- self interpreter atEnd ifFalse: [ self interpreter skip ] ].
-
- self flushInnerContexts
- ! !
- !ASTDebugger methodsFor: 'stepping'!
- proceed
- [ self atEnd ] whileFalse: [ self stepOver ]
- !
- restart
- self interpreter restart.
- self flushInnerContexts
- !
- stepInto
- self shouldBeImplemented
- !
- stepOver
- self context isTopContext
- ifFalse: [ self interpreter skip ]
- ifTrue: [ self interpreter stepOver ].
- self onStep
- ! !
- !ASTDebugger methodsFor: 'testing'!
- atEnd
- self context ifNil: [ ^ true ].
-
- ^ self interpreter atEnd and: [
- self context isTopContext ]
- ! !
- !ASTDebugger class methodsFor: 'instance creation'!
- context: aContext
- ^ self new
- context: aContext;
- yourself
- ! !
- NodeVisitor subclass: #ASTEnterNode
- instanceVariableNames: 'interpreter'
- package: 'Compiler-Interpreter'!
- !ASTEnterNode methodsFor: 'accessing'!
- interpreter
- ^ interpreter
- !
- interpreter: anObject
- interpreter := anObject
- ! !
- !ASTEnterNode methodsFor: 'visiting'!
- visitBlockNode: aNode
- "Answer the node as we want to avoid eager evaluation"
-
- ^ aNode
- !
- visitDagNode: aNode
- aNode dagChildren
- ifEmpty: [ ^ aNode ]
- ifNotEmpty: [ :nodes | ^ self visit: nodes first ]
- !
- visitSequenceNode: aNode
- aNode temps do: [ :each |
- self interpreter context defineLocal: each ].
- ^ super visitSequenceNode: aNode
- ! !
- !ASTEnterNode class methodsFor: 'instance creation'!
- on: anInterpreter
- ^ self new
- interpreter: anInterpreter;
- yourself
- ! !
- NodeVisitor subclass: #ASTInterpreter
- instanceVariableNames: 'node context stack returnValue returned forceAtEnd'
- package: 'Compiler-Interpreter'!
- !ASTInterpreter commentStamp!
- I visit an AST, interpreting (evaluating) nodes one after the other, using a small stack machine.
- ## API
- While my instances should be used from within an `ASTDebugger`, which provides a more high level interface,
- you can use methods from the `interpreting` protocol:
- - `#step` evaluates the current `node` only
- - `#stepOver` evaluates the AST from the current `node` up to the next stepping node (most likely the next send node)
- - `#proceed` evaluates eagerly the AST
- - `#restart` select the first node of the AST
- - `#skip` skips the current node, moving to the next one if any!
- !ASTInterpreter methodsFor: 'accessing'!
- context
- ^ context
- !
- context: aContext
- context := aContext
- !
- node
- "Answer the next node, ie the node to be evaluated in the next step"
-
- ^ node
- !
- node: aNode
- node := aNode
- !
- result
- ^ self hasReturned
- ifTrue: [ self returnValue ]
- ifFalse: [ self context receiver ]
- !
- returnValue
- ^ returnValue
- !
- returnValue: anObject
- returnValue := anObject
- !
- stack
- ^ stack ifNil: [ stack := OrderedCollection new ]
- ! !
- !ASTInterpreter methodsFor: 'initialization'!
- initialize
- super initialize.
- forceAtEnd := false
- ! !
- !ASTInterpreter methodsFor: 'interpreting'!
- enterNode
- self node: ((ASTEnterNode on: self) visit: self node)
- !
- interpret
- "Interpret the next node to be evaluated"
-
- self visit: self node
- !
- next
- | nd nextNode |
- nd := self node.
- nextNode := nd parent ifNotNil: [ :parent |
- (parent nextSiblingNode: nd)
- ifNil: [ parent ]
- ifNotNil: [ :sibling | (ASTEnterNode on: self) visit: sibling ] ].
- self node: nextNode
- !
- proceed
- "Eagerly evaluate the ast"
-
- [ self atEnd ]
- whileFalse: [ self step ]
- !
- restart
- self node: self context ast; enterNode
- !
- setNonLocalReturnFromContext: aContext
- aContext interpreter hasReturned ifTrue: [
- returned := true.
- self returnValue: aContext interpreter returnValue ]
- !
- skip
- self next
- !
- step
- self
- interpret;
- next
- !
- stepOver
- self step.
-
- [ self node isNil or: [ self node isSteppingNode ] ] whileFalse: [
- self step ]
- ! !
- !ASTInterpreter methodsFor: 'private'!
- assign: aNode to: anObject
- aNode binding isInstanceVar
- ifTrue: [ self context receiver instVarAt: aNode value put: anObject ]
- ifFalse: [ self context localAt: aNode value put: anObject ]
- !
- eval: aString
- "Evaluate aString as JS source inside an JS function.
- aString is not sandboxed."
-
- | source function |
-
- source := String streamContents: [ :str |
- str nextPutAll: '0,(function('.
- self context locals keys
- do: [ :each | str nextPutAll: each ]
- separatedBy: [ str nextPutAll: ',' ].
- str
- nextPutAll: '){ return (function() {';
- nextPutAll: aString;
- nextPutAll: '})()})' ].
-
- function := Compiler eval: source.
-
- ^ function valueWithPossibleArguments: self context locals values
- !
- messageFromSendNode: aSendNode arguments: aCollection
- ^ Message new
- selector: aSendNode selector;
- arguments: aCollection;
- yourself
- !
- messageNotUnderstood: aMessage receiver: anObject
- MessageNotUnderstood new
- message: aMessage;
- receiver: anObject;
- signal
- !
- sendMessage: aMessage to: anObject superSend: aBoolean
- | method |
-
- aBoolean ifFalse: [ ^ aMessage sendTo: anObject ].
- anObject class superclass ifNil: [ ^ self messageNotUnderstood: aMessage receiver: anObject ].
-
- method := anObject class superclass methodDictionary
- at: aMessage selector
- ifAbsent: [ ^ self messageNotUnderstood: aMessage receiver: anObject ].
-
- ^ method sendTo: anObject arguments: aMessage arguments
- ! !
- !ASTInterpreter methodsFor: 'stack'!
- peek
- "Peek the top object of the context stack"
-
- self stack ifEmpty: [ ^ nil ].
-
- ^ self stack last
- !
- pop
- "Pop an object from the context stack"
-
- | peekedValue |
-
- peekedValue := self peek.
- self stack removeLast.
- ^ peekedValue
- !
- push: anObject
- "Push an object to the context stack"
-
- ^ self stack add: anObject
- ! !
- !ASTInterpreter methodsFor: 'testing'!
- atEnd
- forceAtEnd ifTrue: [ ^ true ].
-
- ^ self hasReturned or: [ self node isNil ]
- !
- hasReturned
- ^ returned ifNil: [ false ]
- ! !
- !ASTInterpreter methodsFor: 'visiting'!
- visit: aNode
- self hasReturned ifFalse: [ super visit: aNode ]
- !
- visitAssignmentNode: aNode
- | poppedValue |
-
- poppedValue := self pop.
-
- "Pop the left side of the assignment.
- It already has been visited, and we don't need its value."
- self pop.
-
- self push: poppedValue.
- self assign: aNode left to: poppedValue
- !
- visitBlockNode: aNode
- "Do not evaluate the block node.
- Instead, put all instructions into a block that we push to the stack for later evaluation"
-
- | block |
-
- block := AIBlockClosure forContext: self context node: aNode.
-
- self push: block
- !
- visitBlockSequenceNode: aNode
- "If the receiver is actually visiting a BlockSequenceNode,
- it means the the context is a block context. Evaluation should
- stop right after evaluating the block sequence and the outer
- context's interpreter should take over.
- Therefore we force #atEnd."
-
- super visitBlockSequenceNode: aNode.
- forceAtEnd := true
- !
- visitDagNode: aNode
- "Do nothing by default. Especially, do not visit children recursively."
- !
- visitDynamicArrayNode: aNode
- | array |
-
- array := #().
- aNode dagChildren do: [ :each |
- array addFirst: self pop ].
-
- self push: array
- !
- visitDynamicDictionaryNode: aNode
- | keyValueList |
-
- keyValueList := OrderedCollection new.
-
- aNode dagChildren do: [ :each |
- keyValueList add: self pop ].
-
- self push: (HashedCollection newFromPairs: keyValueList reversed)
- !
- visitJSStatementNode: aNode
- returned := true.
- self returnValue: (self eval: aNode source)
- !
- visitReturnNode: aNode
- returned := true.
- self returnValue: self pop
- !
- visitSendNode: aNode
- | receiver args message result |
-
- args := aNode arguments collect: [ :each | self pop ].
- receiver := self peek.
-
- message := self
- messageFromSendNode: aNode
- arguments: args reversed.
-
- result := self sendMessage: message to: receiver superSend: aNode superSend.
-
- "For cascade sends, push the reciever if the send is not the last one"
- (aNode isCascadeSendNode and: [ aNode isLastChild not ])
- ifFalse: [ self pop; push: result ]
- !
- visitValueNode: aNode
- self push: aNode value
- !
- visitVariableNode: aNode
- aNode binding isUnknownVar ifTrue: [
- ^ self push: (Platform globals at: aNode value ifAbsent: [ self error: 'Unknown variable' ]) ].
-
- self push: (aNode binding isInstanceVar
- ifTrue: [ self context receiver instVarAt: aNode value ]
- ifFalse: [ self context
- localAt: aNode value
- ifAbsent: [
- aNode value isCapitalized
- ifTrue: [
- Smalltalk globals
- at: aNode value
- ifAbsent: [ Platform globals at: aNode value ] ] ] ])
- ! !
- Error subclass: #ASTInterpreterError
- instanceVariableNames: ''
- package: 'Compiler-Interpreter'!
- !ASTInterpreterError commentStamp!
- I get signaled when an AST interpreter is unable to interpret a node.!
- NodeVisitor subclass: #ASTPCNodeVisitor
- instanceVariableNames: 'index trackedIndex selector currentNode'
- package: 'Compiler-Interpreter'!
- !ASTPCNodeVisitor commentStamp!
- I visit an AST until I get to the current node for the `context` and answer it.
- ## API
- My instances must be filled with a context object using `#context:`.
- After visiting the AST the current node is answered by `#currentNode`!
- !ASTPCNodeVisitor methodsFor: 'accessing'!
- currentNode
- ^ currentNode
- !
- increaseTrackedIndex
- trackedIndex := self trackedIndex + 1
- !
- index
- ^ index
- !
- index: aNumber
- index := aNumber
- !
- selector
- ^ selector
- !
- selector: aString
- selector := aString
- !
- trackedIndex
- ^ trackedIndex ifNil: [ trackedIndex := 0 ]
- ! !
- !ASTPCNodeVisitor methodsFor: 'visiting'!
- visitJSStatementNode: aNode
- "If a JSStatementNode is encountered, it always is the current node.
- Stop visiting the AST there"
-
- currentNode := aNode
- !
- visitSendNode: aNode
- super visitSendNode: aNode.
-
- self selector = aNode selector ifTrue: [
- self trackedIndex = self index ifTrue: [ currentNode := aNode ].
- self increaseTrackedIndex ]
- ! !
- AIContext setTraitComposition: {TMethodContext} asTraitComposition!
- ! !
- !ASTNode methodsFor: '*Compiler-Interpreter'!
- isLastChild
- ^ self parent dagChildren last = self
- !
- isSteppingNode
- ^ false
- !
- nextSiblingNode: aNode
- "Answer the next node after aNode or nil"
-
- ^ self dagChildren
- at: (self dagChildren indexOf: aNode) + 1
- ifAbsent: [ ^ nil ]
- ! !
- !AssignmentNode methodsFor: '*Compiler-Interpreter'!
- isSteppingNode
- ^ true
- ! !
- !BlockNode methodsFor: '*Compiler-Interpreter'!
- isSteppingNode
- ^ true
- !
- nextSiblingNode: aNode
- "Answer nil as we want to avoid eager evaluation"
-
- "In fact, this should not have been called, ever. IMO. -- herby"
-
- ^ nil
- ! !
- !DynamicArrayNode methodsFor: '*Compiler-Interpreter'!
- isSteppingNode
- ^ true
- ! !
- !DynamicDictionaryNode methodsFor: '*Compiler-Interpreter'!
- isSteppingNode
- ^ true
- ! !
- !JSStatementNode methodsFor: '*Compiler-Interpreter'!
- isSteppingNode
- ^ true
- ! !
- !SendNode methodsFor: '*Compiler-Interpreter'!
- isCascadeSendNode
- ^ self parent isCascadeNode
- !
- isSteppingNode
- ^ true
- ! !
|