UndefinedSuperclassError.st
author Claus Gittinger <cg@exept.de>
Wed, 03 Apr 2013 23:08:10 +0200
changeset 3083 9028b8283735
child 3841 a22f33410bdf
child 4095 448d64c118f2
permissions -rw-r--r--
initial checkin
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3083
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"{ Package: 'stx:libcomp' }"
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
ParseError subclass:#UndefinedSuperclassError
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
	instanceVariableNames:''
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
	classVariableNames:''
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
	poolDictionaries:''
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
	category:'System-Compiler'
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
!
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
!UndefinedSuperclassError class methodsFor:'documentation'!
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
version
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedSuperclassError.st,v 1.1 2013-04-03 21:08:10 cg Exp $'
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
!
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
version_CVS
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedSuperclassError.st,v 1.1 2013-04-03 21:08:10 cg Exp $'
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
! !
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20