```json "esdoc": "^1.1.0", "esdoc-ecmascript-proposal-plugin": "^1.0.0", "esdoc-standard-plugin": "^1.0.0" ``` I get the following error : `warning: could not parse the following code` When the parser encounter an optional `catch` binding: ```js try { const fileStats = await promises.stat(file); if (!fileStats.isFile()) return false; return Finder.isWindows ? this._checkFileExtension(file) : this._checkFilePermissions(fileStats); } catch { // <= optional catch binding return false; } ``` In the generated documentation, the whole file is skipped.