Move method to superclass
authorStefan Vogel <sv@exept.de>
Mon, 02 Apr 2007 12:13:23 +0200
changeset 2030 6f213151b826
parent 2029 ce692c34a270
child 2031 1ce5af7a6ba6
Move method to superclass
PrimaryNode.st
--- a/PrimaryNode.st	Mon Apr 02 12:13:16 2007 +0200
+++ b/PrimaryNode.st	Mon Apr 02 12:13:23 2007 +0200
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libcomp' }"
 
 ParseNode subclass:#PrimaryNode
@@ -67,10 +66,6 @@
     ^ self
 !
 
-codeOn:aStream inBlock:codeBlock for:aCompiler
-    ^ self subclassResponsibility
-!
-
 codeStoreOn:aStream inBlock:codeBlock valueNeeded:valueNeeded for:aCompiler
     ^ self subclassResponsibility
 ! !
@@ -136,5 +131,5 @@
 !PrimaryNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.26 2006-08-07 10:20:08 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/PrimaryNode.st,v 1.27 2007-04-02 10:13:23 stefan Exp $'
 ! !