JohnnyMorganz

Results 416 comments of JohnnyMorganz

The issue also occurs for external packages, e.g. https://wally.run/package/vorlias/net

From discord: It seems the issue is tied to the size of the sourcemap. It is most likely our "makeLazyInstanceType" is expensive

I've manually enforced a lower bound of 15,000 on LuauTarjanChildLimit to help alleviate some issues.

@nikochir A few things - We currently generated `sourcemap.json` on the client side: you need to implement this yourself in your client. The command `rojo sourcemap default.project.json --output sourcemap.json` needs...

This is a Luau issue: https://github.com/Roblox/luau/issues/356 As mentioned there, your two options right now are to move your code onto the else block, or use an assert statement

You can granularly configure lints, but unfortunately I don't think you can do the same for type errors. (configuration is done by luau in .luaurc files https://github.com/Roblox/luau/blob/master/rfcs/config-luaurc.md) I can look...

This is an upstream bug: https://github.com/microsoft/vscode-languageserver-node/issues/1052

I am able to rename `tab`, `foo` and `bar` in these examples - are you not able to do so? `tab.key` is the only one I can't do, but thats...

I also pasted in the examples in a blank file and it work for me... If you find a repro that would be awesome

This isn't a major concern for me since I can add in checks for `Janitor.CurrentlyCleaning`, but the nondeterministic cleanup ordering caught me by surprise when migrating, and there may be...