The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#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