CompilationErrorHandler.st
author Claus Gittinger <cg@exept.de>
Fri, 30 Jul 1999 20:01:33 +0200
changeset 928 90470934ef24
parent 278 8c8c96856b41
child 1414 613ec963af7c
permissions -rw-r--r--
checkin from browser

"
 COPYRIGHT (c) 1995 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.
"

Object subclass:#CompilationErrorHandler
	instanceVariableNames:'myStream currentSource'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Compiler'
!

!CompilationErrorHandler class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 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.
"
!

documentation
"
    Instances of this class are created temporary during fileIn.
    They get notified about any errors. Currently, all we
    do here is to output the error on the Transcript;
    eventually, we will open a box showing the position of the error.
"
! !

!CompilationErrorHandler class methodsFor:'instance creation'!

on:aStream
    ^ self new reader:aStream
! !

!CompilationErrorHandler methodsFor:'accessing'!

source:aString
    currentSource := aString
! !

!CompilationErrorHandler methodsFor:'error handling'!

correctableError:aMessage position:position to:endPos from:aCompiler
    "error notification during fileIn.
     This is sent by the compiler/evaluator if it detects errors."

    ^ self error:aMessage position:position to:endPos from:aCompiler

    "Created: / 30.7.1999 / 18:11:15 / cg"
!

error:aMessage position:position to:endPos from:aCompiler
    "error notification during fileIn.
     This is sent by the compiler/evaluator if it detects errors."

    "
     will eventually open a TextBox here, showing the error ....
    "
"/    position printOn:Transcript.
"/    Transcript show:' '.
    Transcript showCR:aMessage.
    ^ false

    "Created: / 30.7.1999 / 18:10:30 / cg"
!

warning:aMessage position:position to:endPos from:aCompiler
    "warning notification during fileIn - ignore it.
     This is sent by the compiler/evaluator if it detects errors."

    ^ self

    "Created: / 30.7.1999 / 18:11:05 / cg"
! !

!CompilationErrorHandler methodsFor:'private access'!

reader:aStream
    myStream := aStream
! !

!CompilationErrorHandler class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.4 1999-07-30 18:01:33 cg Exp $'
! !