UndefinedSuperclassError.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 05 May 2016 00:28:47 +0200
branchjv
changeset 3841 a22f33410bdf
parent 3083 9028b8283735
child 4106 701025567fad
permissions -rw-r--r--
Reduced dependencies ...on stx:goodies/refaxctoryBrowser, JavaScript and on stx:libbasic3.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3841
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     1
"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     3
              All Rights Reserved
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     4
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     5
 This software is furnished under a license and may be used
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     6
 only in accordance with the terms of that license and with the
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
     9
 other person.  No title to or ownership of the software is
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    10
 hereby transferred.
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    11
"
3083
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libcomp' }"
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
3841
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    14
"{ NameSpace: Smalltalk }"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    15
3083
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
ParseError subclass:#UndefinedSuperclassError
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'System-Compiler'
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
3841
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    23
!UndefinedSuperclassError class methodsFor:'documentation'!
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    24
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    25
copyright
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    26
"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    28
              All Rights Reserved
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    29
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    30
 This software is furnished under a license and may be used
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    31
 only in accordance with the terms of that license and with the
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    33
 be provided or otherwise made available to, or used by, any
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    34
 other person.  No title to or ownership of the software is
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    35
 hereby transferred.
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    36
"
a22f33410bdf Reduced dependencies
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 3083
diff changeset
    37
! !
3083
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!UndefinedSuperclassError class methodsFor:'documentation'!
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
version
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
    ^ '$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
    43
!
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
version_CVS
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
    ^ '$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
    47
! !
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48