-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
panic when trying to use list<string> #171
Comments
Steps to reproduce:
This is using local copies of jco and ComponentizeJS. Freshly built. Assumes they are sibling folders. |
Returning a record works. |
You need to change this line: return this.system.getArguments().concat("__"); into: return this.system.getArguments().concat("__").join(''); so that it returns a string. Adding
|
It is great to be able to see the errors! I appreciate the help. I didn't realize that disabling
|
Thanks for fixing #166 in #168. I was able to get the JavaScript comopnent to use a Rust component and have it used in a Rust component. When I try to use
get-arguments: func() -> list<string>;
from the JavaScript component it panics, but works fine withhello: func() -> string;
.The text was updated successfully, but these errors were encountered: