Cface__CLongNode.st
changeset 16 ffcbe7184a53
parent 14 1f730d82496e
child 18 2f55519f3d0b
--- a/Cface__CLongNode.st	Tue Jul 12 15:02:15 2011 +0000
+++ b/Cface__CLongNode.st	Tue Jul 12 15:38:42 2011 +0000
@@ -23,6 +23,25 @@
     self error:'Cannot happen...I hope :-)'
 
     "Created: / 09-07-2008 / 19:43:11 / Jan Vrany <vranyj1@fel.cvut.cz>"
+!
+
+ffiTypeSymbol
+    "superclass Cface::CModifierNode says that I am responsible to implement this method"
+
+    ^ #long
+
+    "Modified: / 12-07-2011 / 16:33:13 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!CLongNode methodsFor:'visiting'!
+
+acceptVisitor:aVisitor 
+    "Double dispatch back to the visitor, passing my type encoded in
+     the selector (visitor pattern)"
+
+    "stub code automatically generated - please change if required"
+
+    ^ aVisitor visitCLongNode:self
 ! !
 
 !CLongNode class methodsFor:'documentation'!