aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/object.h
diff options
context:
space:
mode:
Diffstat (limited to 'clox/src/object.h')
-rw-r--r--clox/src/object.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/clox/src/object.h b/clox/src/object.h
index 1cef631..4c115ce 100644
--- a/clox/src/object.h
+++ b/clox/src/object.h
@@ -78,6 +78,7 @@ typedef struct {
typedef struct {
Obj obj;
ObjString *name;
+ Table methods;
} ObjClass;
typedef struct {