UndefinedSuperclassError.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 27 Oct 2022 14:53:59 +0100
branchjv
changeset 4735 3b11fb3ede98
parent 4106 701025567fad
permissions -rw-r--r--
Allow single underscore as method / block argument and temporaries This commit is a follow up for 38b221e.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4095
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     1
"
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     2
 COPYRIGHT (c) 2013 by eXept Software AG
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     3
              All Rights Reserved
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     4
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     5
 This software is furnished under a license and may be used
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     6
 only in accordance with the terms of that license and with the
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     8
 be provided or otherwise made available to, or used by, any
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
     9
 other person.  No title to or ownership of the software is
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    10
 hereby transferred.
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
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
4095
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    14
"{ NameSpace: Smalltalk }"
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
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
4095
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    23
!UndefinedSuperclassError class methodsFor:'documentation'!
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    24
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    25
copyright
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    26
"
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    27
 COPYRIGHT (c) 2013 by eXept Software AG
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    28
              All Rights Reserved
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    29
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    30
 This software is furnished under a license and may be used
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    31
 only in accordance with the terms of that license and with the
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    33
 be provided or otherwise made available to, or used by, any
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    34
 other person.  No title to or ownership of the software is
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    35
 hereby transferred.
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    36
"
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
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
4095
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    42
    ^ '$Header$'
3083
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
4095
448d64c118f2 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
    46
    ^ '$Header$'
3083
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
! !
9028b8283735 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48