321
322
323
324
325
326
327
328
329
330
331
332
333
334
|
JanetString str = janet_unwrap_string(s);
return (pstr) {
.v = (char*)str,
.sz = janet_string_length(str),
};
}
};
impl _reload(bool keepState) -> int {
gd_array_clear(&me -> methodBinds);
/* parse the class environment */
JanetTable* const env = me -> env;
printf("core reload\n");
|
|
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
JanetString str = janet_unwrap_string(s);
return (pstr) {
.v = (char*)str,
.sz = janet_string_length(str),
};
}
};
impl _get_script_method_list() -> array[dictionary] {
return me -> methodBinds;
};
impl _reload(bool keepState) -> int {
gd_array_clear(&me -> methodBinds);
/* parse the class environment */
JanetTable* const env = me -> env;
printf("core reload\n");
|