gdjn  Diff

Differences From Artifact [4162c1685e]:

To Artifact [0bc8d7ce3a]:


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