Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
b3b00 committed Apr 22, 2024
1 parent 2690e50 commit 9acf18f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions csly-cli-decompiler/LexerDecompiler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ private string GetToken(string name, LexemeAttribute lexem)

switch (lexem.GenericToken)
{
case GenericToken.Extension:
{
return $"[Extension] {name}; // extension builder will not be decompiled";
}
case GenericToken.Double:
{
return $"[Double] {name};";
Expand Down

0 comments on commit 9acf18f

Please sign in to comment.