The spec has callback FileSystemEntryCallback = void (FileSystemEntry entry); while we have
Bug 1520422 Comment 0 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
The spec has ``` callback FileSystemEntryCallback = void (FileSystemEntry entry); ``` while we have ``` callback interface FileSystemEntryCallback { void handleEvent(FileSystemEntry entry); }; ``` and similar for other callbacks. This should probably be fixed.