From cbb9ffd333f7bef891bcce320dbd349731a216a4 Mon Sep 17 00:00:00 2001 From: cetio Date: Mon, 13 May 2024 09:38:34 -0400 Subject: [PATCH] * --- source/fnc/symbols.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/fnc/symbols.d b/source/fnc/symbols.d index 71e8b62..a4f6be5 100644 --- a/source/fnc/symbols.d +++ b/source/fnc/symbols.d @@ -223,7 +223,7 @@ final: Symbol getChild(string name) => glob.symbols[identifier~'.'~name]; Symbol getParent(string name) => glob.symbols[name~'.'~this.name]; Symbol getAttribute(string name) => attributes[name]; - Field getField(string name) => glob.fields[identifier~'.'~name]; + Variable getField(string name) => glob.fields[identifier~'.'~name]; Function getFunction(string name) => glob.functions[identifier~'.'~name]; Symbol getInherit(string name) => (cast(Type)this).inherits[name]; Alias getAlias(string name) => glob.aliases[identifier~'.'~name];