Added markings to show static

This commit is contained in:
Tristan B. Velloza Kildaire 2021-06-15 15:04:05 +02:00
parent 0b36d4304e
commit 12b0a99d47
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ public class ModuleVariableDeclaration : VariableNode
private void initName()
{
name = resolver.generateName(cast(Container)dnodegen.root.getEntity(), cast(Entity)entity);
name = "(S) "~resolver.generateName(cast(Container)dnodegen.root.getEntity(), cast(Entity)entity);
}
}
@ -54,7 +54,7 @@ public class StaticVariableDeclaration : VariableNode
private void initName()
{
name = resolver.generateName(cast(Container)dnodegen.root.getEntity(), cast(Entity)entity);
name = "(S) "~resolver.generateName(cast(Container)dnodegen.root.getEntity(), cast(Entity)entity);
}
}