compiler/TProgramNodeVisitor.st
changeset 14 fa42d3f1a578
parent 9 569bf5707c7e
child 16 17a2d1d9f205
equal deleted inserted replaced
13:97090c2baa33 14:fa42d3f1a578
    22     "Created: / 25-08-2015 / 19:51:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    22     "Created: / 25-08-2015 / 19:51:53 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    23     "Modified: / 02-09-2015 / 06:53:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    23     "Modified: / 02-09-2015 / 06:53:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    24 ! !
    24 ! !
    25 
    25 
    26 !TProgramNodeVisitor methodsFor:'visitor-double dispatching'!
    26 !TProgramNodeVisitor methodsFor:'visitor-double dispatching'!
    27 
       
    28 acceptInlineAssemblyNode: aMethodNode 
       
    29     self acceptBlockNode: aMethodNode.
       
    30 
       
    31     "Created: / 02-09-2015 / 06:52:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    32 !
       
    33 
    27 
    34 acceptMethodNode: aMethodNode 
    28 acceptMethodNode: aMethodNode 
    35     super acceptMethodNode: aMethodNode.
    29     super acceptMethodNode: aMethodNode.
    36     self visitNode: aMethodNode returnTypeSpec
    30     self visitNode: aMethodNode returnTypeSpec
    37 
    31