UndefinedVariableNotification.st
author Stefan Vogel <sv@exept.de>
Mon, 12 Dec 2016 16:38:47 +0100
changeset 4080 08869106d07e
parent 3091 e39d4c248fa8
child 3841 a22f33410bdf
child 4097 6066489e5789
permissions -rw-r--r--
#BUGFIX by stefan class: Parser comment/format in: #checkSelector:for:inClass: changed: #selectorCheck:for:positions: avoid symbol creation better message if method selector is totally unknown

"{ Package: 'stx:libcomp' }"

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


!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: /cvs/stx/stx/libcomp/UndefinedVariableNotification.st,v 1.1 2013-04-03 21:17:14 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedVariableNotification.st,v 1.1 2013-04-03 21:17:14 cg Exp $'
! !