ParseWarning.st
author Claus Gittinger <cg@exept.de>
Sat, 28 Jan 2017 18:08:03 +0100
changeset 4102 b12adacf8da4
parent 3065 6128bec16783
child 4311 ca85799f3fa7
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: ParseWarning added: #defaultResumeValue if unhandled, output a message via the logger

"
 COPYRIGHT (c) 1989 by Claus Gittinger
              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:#ParseWarning
	instanceVariableNames:'errorMessage startPosition endPosition lineNumber'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Compiler'
!

!ParseWarning class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1989 by Claus Gittinger
              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.
"
! !

!ParseWarning methodsFor:'accessing'!

endPosition
    ^ endPosition
!

endPosition:something
    endPosition := something.
!

errorMessage
    ^ errorMessage
!

errorMessage:something
    errorMessage := something.
!

lineNumber
    ^ lineNumber
!

lineNumber:something
    lineNumber := something.
!

startPosition
    ^ startPosition
!

startPosition:something
    startPosition := something.
! !

!ParseWarning methodsFor:'default action'!

defaultResumeValue
    Logger warning:('Parser Warning: ',(self errorMessage ? self description)).
    ^ super defaultResumeValue
! !

!ParseWarning class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !