1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-22 03:07:41 +00:00

Allow method calls on typed arrays.

This commit is contained in:
Calvin Rose
2019-08-05 18:49:21 -05:00
parent ca5dce5d9f
commit 850a2d7f79
2 changed files with 14 additions and 1 deletions

View File

@@ -107,7 +107,7 @@ Janet janet_getmethod(const uint8_t *method, const JanetMethod *methods) {
return janet_wrap_cfunction(methods->cfun);
methods++;
}
janet_panicf("unknown method %S invoked", method);
janet_panicf("unknown method :%S invoked", method);
return janet_wrap_nil();
}