Re: [squeak-smalltalk/squeak-filesystem] FSMemoryStore isFile/isDirectory checks break when FFI package is loaded (Issue #16)
Jens Lincke via Squeak-dev <[email protected]>
| Newsgroups | gmane.comp.lang.smalltalk.squeak.general |
|---|---|
| Message-ID | <squeak-smalltalk/squeak-filesystem/issues/16/[email protected]> |
JensLincke left a comment (squeak-smalltalk/squeak-filesystem#16) Thanks @LinqLover , this helped me with the GitBrowser bug: [FixGitBrowserDirectory.1.cs.txt](https://github.com/user-attachments/files/27488010/FixGitBrowserDirectory.1.cs.txt) ``` 'From Squeak6.1beta of 14 April 2026 [latest update: #23716] on 7 May 2026 at 5:54:55 pm'! !FSMemoryStore methodsFor: 'private' stamp: 'jl 5/7/2026 17:53'! basicIsDirectory: association ^ association isAssociation ifTrue: [ association value isDictionary ] ifFalse: [ association isDictionary ]! ! !FSMemoryStore methodsFor: 'private' stamp: 'jl 5/7/2026 17:52'! basicIsFile: association ^ association isAssociation ifTrue: [ association value isDictionary not] ifFalse: [ association isDictionary not ]! ! ``` -- Reply to this email directly or view it on GitHub: https://github.com/squeak-smalltalk/squeak-filesystem/issues/16#issuecomment-4398708049 You are receiving this because you are subscribed to this thread. Message ID: <squeak-smalltalk/squeak-filesystem/issues/16/[email protected]> Squeak-dev mailing list -- [email protected] To unsubscribe send an email to [email protected]