Issue 3325 in pharo: SourcedMethodReference bug due to parseTimestampFrom:

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 3325 in pharo: SourcedMethodReference bug due to parseTimestampFrom:

pharo
Status: Accepted
Owner: Benjamin.VanRyseghem.Pharo

New issue 3325 by Benjamin.VanRyseghem.Pharo: SourcedMethodReference bug  
due to parseTimestampFrom:
http://code.google.com/p/pharo/issues/detail?id=3325

aString = 'tk 1/8/97'

parseTimestampFrom: aString
        "Parse a date-time from a timestamp-string that is extracted from a source  
file. If there is no timestamp, we return a very old time"
        ^ aString isEmpty
                ifTrue:[DateAndTime new]
                ifFalse:[(((aString subStrings: ' ') last: 2) joinUsing: Character space)  
asDateAndTime]

It crashes


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3325 in pharo: SourcedMethodReference bug due to parseTimestampFrom:

pharo

Comment #1 on issue 3325 by marcus.denker: SourcedMethodReference bug due  
to parseTimestampFrom:
http://code.google.com/p/pharo/issues/detail?id=3325

See Issue 3292


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3325 in pharo: SourcedMethodReference bug due to parseTimestampFrom:

pharo

Comment #2 on issue 3325 by Benjamin.VanRyseghem.Pharo:  
SourcedMethodReference bug due to parseTimestampFrom:
http://code.google.com/p/pharo/issues/detail?id=3325

Ok, fix proposed in the entry 3292 :)


Reply | Threaded
Open this post in threaded view
|

Re: Issue 3325 in pharo: SourcedMethodReference bug due to parseTimestampFrom:

pharo
Updates:
        Status: Closed

Comment #3 on issue 3325 by marcus.denker: SourcedMethodReference bug due  
to parseTimestampFrom:
http://code.google.com/p/pharo/issues/detail?id=3325

(No comment was entered for this change.)