From 07f691425c95a53323229accd8a907c5dea7e530 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 13 Aug 2022 12:20:00 -0700 Subject: Chapter 28.1 --- clox/src/object.h | 1 + 1 file changed, 1 insertion(+) (limited to 'clox/src/object.h') 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 { -- cgit v1.2.3-54-g00ecf