The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#ifndef SPVM_ENUMERATION_H
#define SPVM_ENUMERATION_H

#include "spvm_base.h"

struct SPVM_enumeration {
  SPVM_DYNAMIC_ARRAY* enumeration_values;
};

SPVM_ENUMERATION* SPVM_ENUMERATION_new(SPVM_COMPILER* compiler);

#endif