Cface__CFloatNode.st
changeset 16 ffcbe7184a53
parent 14 1f730d82496e
child 19 1297bf936bfb
--- a/Cface__CFloatNode.st	Tue Jul 12 15:02:15 2011 +0000
+++ b/Cface__CFloatNode.st	Tue Jul 12 15:38:42 2011 +0000
@@ -10,6 +10,39 @@
 !
 
 
+!CFloatNode methodsFor:'accessing'!
+
+cByteSize
+    "superclass Cface::CTypeNode says that I am responsible to implement this method"
+
+    ^ self shouldImplement
+!
+
+ffiTypeSymbol
+    "superclass Cface::CTypeNode says that I am responsible to implement this method"
+
+    ^ #float
+
+    "Modified: / 12-07-2011 / 16:29:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
+smalltalkName
+    "superclass Cface::CBuiltinNode says that I am responsible to implement this method"
+
+    ^ self shouldImplement
+! !
+
+!CFloatNode 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 visitCFloatNode:self
+! !
+
 !CFloatNode class methodsFor:'documentation'!
 
 version_SVN