File Coverage

lib/SPVM/Builder/src/spvm_array_field_access.c
Criterion Covered Total %
statement 2 2 100.0
branch n/a
condition n/a
subroutine n/a
pod n/a
total 2 2 100.0


line stmt bran cond sub pod time code
1             // Copyright (c) 2023 Yuki Kimoto
2             // MIT License
3              
4             #include "spvm_array_field_access.h"
5              
6             #include "spvm_allocator.h"
7             #include "spvm_compiler.h"
8              
9 2283           SPVM_ARRAY_FIELD_ACCESS* SPVM_ARRAY_FIELD_ACCESS_new(SPVM_COMPILER* compiler) {
10 2283           return SPVM_ALLOCATOR_alloc_memory_block_tmp(compiler->current_each_compile_allocator, sizeof(SPVM_ARRAY_FIELD_ACCESS));
11             }