The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

// Copyright (c) 2023 Yuki Kimoto
// MIT License
#ifndef SPVM_ALLOW_H
#define SPVM_ALLOW_H
#include "spvm_typedecl.h"
struct spvm_allow {
SPVM_OP* op_allow;
const char* basic_type_name;
};
SPVM_ALLOW* SPVM_ALLOW_new(SPVM_COMPILER* compiler);
#endif