X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Ftypes%2Fimpl_def_val.h;h=e597745d51106caae42575c27bea0809423c69ee;hp=b5530bcca2d4bb2bdfaa25cdb02f0a96ff7136e3;hb=c9384515a81cb64d345b299908b2852f51bb8e6e;hpb=de4f7cc512bbffb5e71290ac48e659dae5e9601d diff --git a/src/types/impl_def_val.h b/src/types/impl_def_val.h index b5530bc..e597745 100644 --- a/src/types/impl_def_val.h +++ b/src/types/impl_def_val.h @@ -35,13 +35,16 @@ struct psi_impl_type; struct psi_impl_def_val { struct psi_token *token; token_t type; - char *text; + union { + struct psi_num_exp *num; + } data; impl_val ival; }; -struct psi_impl_def_val *psi_impl_def_val_init(token_t t, const char *text); +struct psi_impl_def_val *psi_impl_def_val_init(token_t t, void *data); void psi_impl_def_val_free(struct psi_impl_def_val **def_ptr); void psi_impl_def_val_dump(int fd, struct psi_impl_def_val *val); -bool psi_impl_def_val_validate(struct psi_data *data, struct psi_impl_def_val *def, struct psi_impl_type *type); +bool psi_impl_def_val_validate(struct psi_data *data, struct psi_impl_def_val *def, + struct psi_impl_type *cmp, struct psi_validate_scope *scope); #endif