Cface__CTypeNode.st
changeset 1 b6c0180314d1
child 2 cfd2c393abfe
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Cface__CTypeNode.st	Tue May 27 18:55:24 2008 +0000
@@ -0,0 +1,33 @@
+"{ Package: 'cvut:fel/cface' }"
+
+"{ NameSpace: Cface }"
+
+CDefinitionNode subclass:#CTypeNode
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Cface-C AST'
+!
+
+
+!CTypeNode methodsFor:'converting'!
+
+resolved
+    ^ self
+
+    "Created: / 17-02-2008 / 17:56:03 / janfrog"
+! !
+
+!CTypeNode methodsFor:'testing'!
+
+isCTypeNode
+    ^ true
+
+    "Created: / 17-02-2008 / 21:49:53 / janfrog"
+! !
+
+!CTypeNode class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/cvut-fel/cface/Cface__CTypeNode.st,v 1.1 2008/02/26 15:59:04 vranyj1 Exp $'
+! !