You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In monaco-typescript's mode.ts file, there is an IDisposable[] that gets created. IDisposable instances get pushed into it but then nothing is done with the array. What is the point of the creating the array in the first place then?
I guess we were planning to do something with those IDisposables, but there's nothing we can really do, once you have loaded TypeScript, you cannot take it back... :)
https://github.com/Microsoft/monaco-typescript/blob/19b622bb0a8147bbe33fbaf9e3457b72f2f61e36/src/mode.ts#L58-L78
In monaco-typescript's
mode.ts
file, there is anIDisposable[]
that gets created.IDisposable
instances get pushed into it but then nothing is done with the array. What is the point of the creating the array in the first place then?The text was updated successfully, but these errors were encountered: