UndefinedVariableNotification.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 05 May 2016 00:28:47 +0200
branchjv
changeset 3841 a22f33410bdf
parent 3091 e39d4c248fa8
child 4106 701025567fad
permissions -rw-r--r--
Reduced dependencies ...on stx:goodies/refaxctoryBrowser, JavaScript and on stx:libbasic3.

"
 COPYRIGHT (c) 2006 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) 2006 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: /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 $'
! !