# Copyright (c) 2023 [--user-name]
# MIT License
class Native::Field {
use Native::BasicType;
has runtime : Native::Runtime;
native method get_index : int ();
native method get_name : string ();
native method get_basic_type : Native::BasicType ();
native method get_type_dimension : int ();
native method get_type_flag : int ();
native method get_current_basic_type : Native::BasicType ();
}