| 71 | } |
| 72 | |
| 73 | void cbm_scope_bind(CBMScope *scope, const char *name, const CBMType *type) { |
| 74 | (void)cbm_scope_bind_value(scope, name, type, NULL); |
| 75 | } |
| 76 | |
| 77 | bool cbm_scope_bind_checked(CBMScope *scope, const char *name, const CBMType *type) { |
| 78 | return cbm_scope_bind_value(scope, name, type, NULL); |
no test coverage detected