Cface__CLongNode.st
changeset 1 b6c0180314d1
child 2 cfd2c393abfe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Cface__CLongNode.st	Tue May 27 18:55:24 2008 +0000
@@ -0,0 +1,52 @@
+"{ Package: 'cvut:fel/cface' }"
+
+"{ NameSpace: Cface }"
+
+CModifierNode subclass:#CLongNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Cface-C AST'
+!
+
+
+!CLongNode methodsFor:'printing'!
+
+printOn: stream indent: indent
+
+    stream 
+        nextPutAll:'long '; 
+        cr;
+        next: indent + 1 put: Character tab.
+
+    type printOn: stream indent: indent + 1.
+
+    "Created: / 04-03-2008 / 10:57:12 / janfrog"
+! !
+
+!CLongNode methodsFor:'testing'!
+
+isCLongNode
+    ^ true
+
+    "Created: / 17-02-2008 / 21:52:38 / janfrog"
+! !
+
+!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
+
+    "Created: / 12-02-2008 / 22:14:55 / janfrog"
+! !
+
+!CLongNode class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/cvut-fel/cface/Cface__CLongNode.st,v 1.1 2008/02/26 15:58:50 vranyj1 Exp $'
+! !