JohnnyMorganz
JohnnyMorganz
Need a way to be able to parse comments and attach it to its respective AstNode. I don't think this is currently possible in Luau
```lua local Account = {} function Account.New() local self = setmetatable({}, Account) self.Balance = 10 return self end function Account:Deposit(Amount: number) self.Balance += Amount end local a: Account = Account.New()...
It would be good to be able to register extra definitions, e.g. `testez.d.lua`. We should put this in configuration and make it so it maps globs to extra definitions
It seems that the published API docs use HTML to format their text. We need to convert this to markdown though Not sure what's the nicest way to do this
Currently, sourcemaps are regenerated on the client and the server listens for watched file changes. We should move this to the server by calling out to the rojo executable directly....
Automatically suggest to import modules if we can somehow infer the right one
Consider a janitor as such ```lua local janitor = Janitor.new() local camera = workspace.CurrentCamera -- doing some work which requires custom camera control ... -- if camera type changes (e.g....
I'm currently thinking about using pretty.rs for one of my projects, but one thing holding me back is that I can't seem to find a nice way to handle comments...
Test all flags enabled at once to pick up potential conflicts
`contains_comments` turns out is a very expensive function for big files... We do some reorganisation and reduce the reliance on this function. We should try and remove its use completely....