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

// Copyright (c) 2023 Yuki Kimoto
// MIT License
#ifndef SPVM_FIELD_ACCESS_H
#define SPVM_FIELD_ACCESS_H
#include "spvm_typedecl.h"
struct spvm_field_access {
SPVM_OP* op_name;
SPVM_FIELD* field;
};
SPVM_FIELD_ACCESS* SPVM_FIELD_ACCESS_new(SPVM_COMPILER* compiler);
#endif