Support getting type info when writing symbols to symbols

This commit is contained in:
Yoshi Askharoun
2025-09-24 19:21:12 -05:00
parent 2a8aca41c1
commit 5d6dd89f30
2 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ internal record IrisObject(object Object, TypeSchema Type)
type ??= constantInfo.Type;
}
type ??= Disassembler.GuessTypeSchema(obj.GetType(), context.LoadResult);
type ??= Disassembler.TryGuessTypeSchema(obj.GetType(), context.LoadResult);
return new(obj, type);
}