NameLookupError.st
changeset 2485 97d23afe9c4a
parent 2447 137fef41c520
child 3074 94ff90275134
equal deleted inserted replaced
2484:6f252eb387f6 2485:97d23afe9c4a
    42 ! !
    42 ! !
    43 
    43 
    44 !NameLookupError methodsFor:'accessing'!
    44 !NameLookupError methodsFor:'accessing'!
    45 
    45 
    46 nameToLookup
    46 nameToLookup
    47     ^ parameter.
    47     request notNil ifTrue:[
       
    48         ^ request canonicalName.
       
    49     ].
       
    50     ^ nil.
    48 !
    51 !
    49 
    52 
    50 nameToLookup:something
    53 nameToLookup:something
    51     parameter := something
    54     parameter := something
    52 !
    55 !
    73 ! !
    76 ! !
    74 
    77 
    75 !NameLookupError class methodsFor:'documentation'!
    78 !NameLookupError class methodsFor:'documentation'!
    76 
    79 
    77 version
    80 version
    78     ^ '$Header: /cvs/stx/stx/libbasic2/NameLookupError.st,v 1.4 2010-05-13 10:53:54 stefan Exp $'
    81     ^ '$Header: /cvs/stx/stx/libbasic2/NameLookupError.st,v 1.5 2010-08-18 18:34:07 stefan Exp $'
    79 !
    82 !
    80 
    83 
    81 version_CVS
    84 version_CVS
    82     ^ '$Header: /cvs/stx/stx/libbasic2/NameLookupError.st,v 1.4 2010-05-13 10:53:54 stefan Exp $'
    85     ^ '$Header: /cvs/stx/stx/libbasic2/NameLookupError.st,v 1.5 2010-08-18 18:34:07 stefan Exp $'
    83 ! !
    86 ! !
    84 
    87 
    85 NameLookupError initialize!
    88 NameLookupError initialize!