mirror of
https://github.com/CPunch/Cosmo.git
synced 2024-11-05 00:00:10 +00:00
added IS_METHOD to IS_CALLABLE
This commit is contained in:
parent
ec8f5e7e4f
commit
bf59f70598
@ -113,7 +113,7 @@ static inline bool isObjType(CValue val, CObjType type) {
|
||||
|
||||
// just protects against macro expansion
|
||||
static inline bool IS_CALLABLE(CValue val) {
|
||||
return IS_CLOSURE(val) || IS_CFUNCTION(val);
|
||||
return IS_CLOSURE(val) || IS_CFUNCTION(val) || IS_METHOD(val);
|
||||
}
|
||||
|
||||
CObj *cosmoO_allocateBase(CState *state, size_t sz, CObjType type);
|
||||
|
Loading…
Reference in New Issue
Block a user