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
Thanks for pointing this out.
I would like to understand the issue clearly - is it a question of increasing the amount of code?
My understanding is that it doesn't seem to affect the speed of execution, is my perception correct?
Hello there,
i was messing around with transpilerm and IL, and found out that
switch
inDeserialize
could be improved.This code:
VYaml/VYaml.SourceGenerator/Emitter.cs
Lines 425 to 426 in aa786ee
could be replaced to
codeWriter.AppendLine("goto default");
As you can see by this iamge (IL code), it created the same code again and again instead of jumping for default labek
The text was updated successfully, but these errors were encountered: