swig icon indicating copy to clipboard operation
swig copied to clipboard

Branch for the development of SWIG's javascript target (v8 and jsc)

Results 13 swig issues
Sort by recently updated
recently updated
newest added

I was wondering: how would it be possible to wrap a callback from JS to C++ World? Similar to what NodeJS does for most of its async api. I think...

I found a bug with the way multiple return values are handled with the JSCore implementation. Basically, I have this function that takes 5 parameters where arg2-5 are out-values. (The...

When an error occurs in the SWIG wrapper functions, it creates a string which is used as the exception. This is insufficient for being able to get the file name...

I've been visually looking at the JSCore output. I don't think it is C89 clean. For example, I see the use of "bool" as a type which is not standard...

I need %native support to plug in holes that the current implementation can't handle and hard things like va_args (printf). I wrote a basic implementation for JavaScriptCore. V8 is missing....

According to the docs, this is supposed to work for both C and C++ in a .i file: bool Init(int val=10); The SWIG generation for JSCore and v8 fail to...

The examples and test-suite will be run in node.js in first place. However we need a way to test the JSC emitter, too. We have a custom javascript shell in...

Taken from https://github.com/oliver----/swig-v8/issues/12#issuecomment-23750151: I just hit a new problem with the use of C99 INFINITY. I have APIs that expect a float, so when the SWIG API is called to...

The documentation needs a rewrite. It should be similar to that of the other modules. Plus specialities: - Installation/Configuration specifics for different platforms and targets - Developer Handbook (How to...

Hi, sorry to use the issues to contact you, but I didn't find an other way. I compiled swig-v8 with CMake and VCC on windows. Everything seems to worked. I...