Cameron Little
Cameron Little
Another option, that's a bit more idiomatic, would be to make the values pointer types and use `nil` as the empty value. However, the nullable float and int types already...
I think the issue is that `"/Volumes/Macintosh HD/Users/test/foo/bar"` is being parsed as a regular expression.
I think this https://github.com/gkz/levn/blob/94a07e33d52e39db57a62eca97a5f370cbae3379/src/parse-string.ls#L83 Is splitting the string
Just found this, which looks like a good source for redoing the icons https://github.com/alrra/browser-logos
Can you clarify what the "InstallPackage command" is? Is this a feature of the Language Server Protocol or of TypeScript?
This could be used for jsdoc `@link` and `@see` tags potentially. https://github.com/Microsoft/TypeScript/issues/35524
Might be related to https://github.com/webpack-contrib/css-loader/issues/561, which has a minimal reproduction.
The [`bind`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_objects/Function/bind) function makes a new "anonymous" function with a specific `this` in scope. In this case, the array `push` method uses `this` to know what array to mutate. When...
I see this same message as well, with no negative side effects.
Looks like this might be possible. `tsserver` has a `skipDestructiveCodeActions` argument that skips the remove unused arguments logic. https://github.com/microsoft/TypeScript/blob/663b19fe4a7c4d4ddaa61aedadd28da06acd27b6/src/services/organizeImports.ts#L91-L95 In order to implement this I'll need to pass that through...