CompilationErrorHandler.st
changeset 1494 8e860ca71888
parent 1493 047f932284df
child 2217 a505d0b7d544
equal deleted inserted replaced
1493:047f932284df 1494:8e860ca71888
    89     ^ false
    89     ^ false
    90 
    90 
    91     "Created: / 30.7.1999 / 18:10:30 / cg"
    91     "Created: / 30.7.1999 / 18:10:30 / cg"
    92 !
    92 !
    93 
    93 
       
    94 unusedVariableWarning:aMessage position:position to:endPos from:aCompiler
       
    95     "warning notification during fileIn.
       
    96      This is sent by the compiler/evaluator if it detects errors."
       
    97 
       
    98     ^ self warning:aMessage position:position to:endPos from:aCompiler
       
    99 !
       
   100 
    94 warning:aMessage position:position to:endPos from:aCompiler
   101 warning:aMessage position:position to:endPos from:aCompiler
    95     "warning notification during fileIn - ignore it.
   102     "warning notification during fileIn - ignore it.
    96      This is sent by the compiler/evaluator if it detects errors."
   103      This is sent by the compiler/evaluator if it detects errors."
    97 
   104 
    98     ^ self
   105     ^ self
   107 ! !
   114 ! !
   108 
   115 
   109 !CompilationErrorHandler class methodsFor:'documentation'!
   116 !CompilationErrorHandler class methodsFor:'documentation'!
   110 
   117 
   111 version
   118 version
   112     ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.6 2004-03-12 10:08:44 penk Exp $'
   119     ^ '$Header: /cvs/stx/stx/libcomp/CompilationErrorHandler.st,v 1.7 2004-03-12 10:11:37 penk Exp $'
   113 ! !
   120 ! !