AliasDeclaration

- Print the expression
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-10 10:17:07 +02:00
parent 23d9712d67
commit 84469d93f0
1 changed files with 1 additions and 1 deletions

View File

@ -30,6 +30,6 @@ public final class AliasDeclaration : Statement
public override string toString()
{
return format("Alias [name: %s]", this.aliasName);
return format("Alias [name: %s, expr: %s]", this.aliasName, this.aliasExpr);
}
}