Aaron Wright

Results 2 issues of Aaron Wright

I'm not sure how to use a static JS class method (containing the `this` keyword) in C++ in a way that allows for passing arbitrary parameters from C++. I have...

Hi, I have two files, test_a.js and test_b.js. Here they are: test_a.js ```js var test_object = { foo: "test_a.js", } function func_a(obj) { if ("foo" in obj) { System.print(obj.foo); }...