UndefinedVariableError.st
author Stefan Vogel <sv@exept.de>
Thu, 13 Feb 2020 15:46:48 +0100
changeset 4633 a40a1a077728
parent 4096 9bf52d1d4d87
child 4106 701025567fad
permissions -rw-r--r--
#BUGFIX by stefan class: ObjectFileLoader class changed: #primUnloadDynamicObject: Workaround in 1.403 was not needed - undo it

"
 COPYRIGHT (c) 2013 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libcomp' }"

"{ NameSpace: Smalltalk }"

ParseError subclass:#UndefinedVariableError
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'System-Compiler'
!

!UndefinedVariableError class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2013 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!UndefinedVariableError class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !