diff options
Diffstat (limited to 'lib.c')
-rw-r--r-- | lib.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -209,7 +209,7 @@ static val code2type(int code) return nil; } -val builtin_type_p(val sym) +val built_in_type_p(val sym) { type_t i; @@ -219,6 +219,9 @@ val builtin_type_p(val sym) return t; } + if (gethash(cobj_hash, sym)) + return t; + return nil; } @@ -9206,11 +9209,6 @@ static void cobj_populate_hash(void) sethash(cobj_hash, ptr->cls_sym, num_fast(ptr - cobj_class)); } -int cobj_class_exists(val cls_sym) -{ - return gethash(cobj_hash, cls_sym) != nil; -} - val cobj(mem_t *handle, struct cobj_class *cls, struct cobj_ops *ops) { if (cls != 0) { |