UndefinedVariableNotification.st
author Claus Gittinger <cg@exept.de>
Fri, 28 Jun 2019 09:06:06 +0200
changeset 4452 734890e46fa8
parent 4097 6066489e5789
child 4106 701025567fad
permissions -rw-r--r--
#OTHER by cg self class name -> self className

"
 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 }"

Notification subclass:#UndefinedVariableNotification
	instanceVariableNames:'parser'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Compiler'
!

!UndefinedVariableNotification 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.
"
! !

!UndefinedVariableNotification methodsFor:'accessing'!

description
    ^ 'undefined variable: ' , self variableName
!

parser
    "return the value of the instance variable 'parser' (automatically generated)"

    ^ parser
!

parser:something
    "set the value of the instance variable 'parser' (automatically generated)"

    parser := something.
!

variableName
    ^ parameter
! !

!UndefinedVariableNotification class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !