| 19 | #define CBM_SCOPE_CHUNK_BINDINGS 16 |
| 20 | |
| 21 | typedef struct CBMScopeChunk { |
| 22 | CBMVarBinding bindings[CBM_SCOPE_CHUNK_BINDINGS]; |
| 23 | int used; |
| 24 | struct CBMScopeChunk* next; |
| 25 | } CBMScopeChunk; |
| 26 | |
| 27 | typedef struct CBMScope { |
| 28 | struct CBMScope* parent; |
nothing calls this directly
no outgoing calls
no test coverage detected