This commit is contained in:
ninemine
2025-07-01 22:21:30 +08:00
parent bf6b893412
commit 4d49ab1990
3 changed files with 118 additions and 38 deletions

View File

@@ -18,7 +18,7 @@ namespace Convention.Symbolization.Internal
public readonly struct FunctionSymbol
{
public readonly string SymbolName;
public readonly string FunctionName;
public readonly Type ReturnType;
public readonly Type[] ParameterTypes;
public readonly Modification[] Modifiers;
@@ -26,7 +26,7 @@ namespace Convention.Symbolization.Internal
public FunctionSymbol(string symbolName, Type returnType, Type[] parameterTypes, Modification[] modifiers)
{
this.SymbolName = symbolName;
this.FunctionName = symbolName;
this.ReturnType = returnType;
this.ParameterTypes = parameterTypes;
this.Modifiers = modifiers;