make native function support and start working on support for error catching

This commit is contained in:
William Bell
2025-08-06 22:31:31 +01:00
parent c567b59459
commit 4b6d15336a
9 changed files with 91 additions and 44 deletions

View File

@@ -17,6 +17,8 @@ ArgonObject *new_object();
void add_field(ArgonObject *target, char *name, ArgonObject *object);
ArgonObject *get_field(ArgonObject *target, char *name);
ArgonObject *get_field_for_class(ArgonObject *target, char *name);
ArgonObject *get_field(ArgonObject *target, char *name, bool recursive);
#endif // OBJECT_H