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_VALUE_H
#define SPVM_ENUMERATION_VALUE_H

#include "spvm_base.h"

// Field information
struct SPVM_enumeration_value {
  SPVM_OP* op_name;
  SPVM_OP* op_constant;
};

SPVM_ENUMERATION_VALUE* SPVM_ENUMERATION_VALUE_new(SPVM_COMPILER* compiler);

#endif