ParseWarning.st
changeset 3065 6128bec16783
parent 3061 c15acf373ee6
child 4102 b12adacf8da4
equal deleted inserted replaced
3064:179c907e32be 3065:6128bec16783
       
     1 "
       
     2  COPYRIGHT (c) 1989 by Claus Gittinger
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libcomp' }"
    12 "{ Package: 'stx:libcomp' }"
     2 
    13 
     3 Notification subclass:#ParseWarning
    14 Notification subclass:#ParseWarning
     4 	instanceVariableNames:'errorMessage startPosition endPosition lineNumber'
    15 	instanceVariableNames:'errorMessage startPosition endPosition lineNumber'
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'System-Compiler'
    18 	category:'System-Compiler'
     8 !
    19 !
     9 
    20 
       
    21 !ParseWarning class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 1989 by Claus Gittinger
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 ! !
    10 
    36 
    11 !ParseWarning methodsFor:'accessing'!
    37 !ParseWarning methodsFor:'accessing'!
    12 
    38 
    13 endPosition
    39 endPosition
    14     ^ endPosition
    40     ^ endPosition
    43 ! !
    69 ! !
    44 
    70 
    45 !ParseWarning class methodsFor:'documentation'!
    71 !ParseWarning class methodsFor:'documentation'!
    46 
    72 
    47 version
    73 version
    48     ^ '$Header: /cvs/stx/stx/libcomp/ParseWarning.st,v 1.1 2013-04-03 17:14:33 cg Exp $'
    74     ^ '$Header: /cvs/stx/stx/libcomp/ParseWarning.st,v 1.2 2013-04-03 17:21:41 cg Exp $'
    49 !
    75 !
    50 
    76 
    51 version_CVS
    77 version_CVS
    52     ^ '$Header: /cvs/stx/stx/libcomp/ParseWarning.st,v 1.1 2013-04-03 17:14:33 cg Exp $'
    78     ^ '$Header: /cvs/stx/stx/libcomp/ParseWarning.st,v 1.2 2013-04-03 17:21:41 cg Exp $'
    53 ! !
    79 ! !
    54 
    80