We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b9bad0 commit fd5375bCopy full SHA for fd5375b
source/ports/rs_port/tests/metacall_handle_test.rs
@@ -36,9 +36,6 @@ fn metacall_handle() {
36
37
// Now, testing loading again into an existing handle number 2
38
// This should make the handle have greet (2) and yeet functions together
39
-
40
- // TODO: This has a bug in the core that must be reviewed
41
- /*
42
const SCRIPT3: &str = "function yeet() { return 3 } \nmodule.exports = { yeet }";
43
44
let result3 = load::from_memory(Tag::NodeJS, SCRIPT3, Some(&mut handle2));
@@ -52,5 +49,4 @@ fn metacall_handle() {
52
49
let out = metacall_handle_no_arg::<f64>(&mut handle2, "yeet").unwrap();
53
50
assert_eq!(out, 3.0, "Testing yeet 2");
54
51
}
55
- */
56
0 commit comments