ParseWarning.st
author Claus Gittinger <cg@exept.de>
Mon, 12 Dec 2016 13:38:37 +0100
changeset 4078 2ab3356da639
parent 3065 6128bec16783
child 4102 b12adacf8da4
permissions -rw-r--r--
#FEATURE by cg class: Parser changed: #checkSelector:for:inClass: #typeOfNode:

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

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 class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libcomp/ParseWarning.st,v 1.2 2013-04-03 17:21:41 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libcomp/ParseWarning.st,v 1.2 2013-04-03 17:21:41 cg Exp $'
! !