| 235 | } |
| 236 | |
| 237 | inline bool IsProxy(RawObject obj) |
| 238 | { |
| 239 | Class *clasp = GetObjectClass(obj); |
| 240 | return IsObjectProxyClass(clasp) || IsFunctionProxyClass(clasp); |
| 241 | } |
| 242 | |
| 243 | /* Shared between object and function proxies. */ |
| 244 | /* |
no test coverage detected