scztt / LanguageServer.quark

16 stars 10 forks source link

String should be a symbol #24

Closed spluta closed 2 months ago

spluta commented 8 months ago

In this line:

https://github.com/scztt/LanguageServer.quark/blob/2d4935ecfa41c1031db2e4f3cb64d4d68b3d98da/Providers/SignatureHelpProvider.sc#L92

I believe:

Log("LanguageServer.quark").info("Finding method name before %", end);

should be:

Log('LanguageServer.quark').info("Finding method name before %", end);

It is formatted as a symbol everywhere else in the code set and this removes and error that is posted every time there is an open parenthesis.

scztt commented 2 months ago

thanks for noticing this - resolved.