CompilationErrorHandler.st
changeset 2443 b5c69e2f0411
parent 2433 5ccfab20dcf5
child 2445 df14391bb616
equal deleted inserted replaced
2442:6564bc42988d 2443:b5c69e2f0411
    63 
    63 
    64 correctableError:aMessage position:position to:endPos from:aCompiler
    64 correctableError:aMessage position:position to:endPos from:aCompiler
    65     "error notification during fileIn.
    65     "error notification during fileIn.
    66      This is sent by the compiler/evaluator if it detects errors."
    66      This is sent by the compiler/evaluator if it detects errors."
    67 
    67 
    68     ^ self error:aMessage position:position to:endPos from:aCompiler
    68     self error:aMessage position:position to:endPos from:aCompiler.
       
    69     ^ false. "/ no correction
    69 
    70 
    70     "Created: / 30.7.1999 / 18:11:15 / cg"
    71     "Created: / 30-07-1999 / 18:11:15 / cg"
       
    72     "Modified: / 02-11-2010 / 12:58:54 / cg"
    71 !
    73 !
    72 
    74 
    73 correctableSelectorWarning:aMessage position:position to:endPos from:aCompiler
    75 correctableSelectorWarning:aMessage position:position to:endPos from:aCompiler
    74     "warning notification during fileIn.
    76     "warning notification during fileIn.
    75      This is sent by the compiler/evaluator if it detects errors."
    77      This is sent by the compiler/evaluator if it detects errors."
    76 
    78 
    77     ^ self warning:aMessage position:position to:endPos from:aCompiler
    79     self warning:aMessage position:position to:endPos from:aCompiler.
       
    80     ^ false. "/ no correction
       
    81 
       
    82     "Modified: / 02-11-2010 / 12:59:04 / cg"
    78 !
    83 !
    79 
    84 
    80 error:aMessage position:position to:endPos from:aCompiler
    85 error:aMessage position:position to:endPos from:aCompiler
    81     "error notification during fileIn.
    86     "error notification during fileIn.
    82      This is sent by the compiler/evaluator if it detects errors."
    87      This is sent by the compiler/evaluator if it detects errors."
   122 ! !
   127 ! !
   123 
   128 
   124 !CompilationErrorHandler class methodsFor:'documentation'!
   129 !CompilationErrorHandler class methodsFor:'documentation'!
   125 
   130 
   126 version
   131 version
   127     ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.9 2010-11-02 11:52:44 cg Exp $'
   132     ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.10 2010-11-02 11:59:27 cg Exp $'
   128 !
   133 !
   129 
   134 
   130 version_CVS
   135 version_CVS
   131     ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.9 2010-11-02 11:52:44 cg Exp $'
   136     ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.10 2010-11-02 11:59:27 cg Exp $'
   132 ! !
   137 ! !