webidl
webidl copied to clipboard
Haxe support for WebIDL
I have this error ``` webidl/webidl/Module.hx:431: characters 14-20 : Warning : __js__ is deprecated, use js.Syntax.code instead webidl/webidl/Module.hx:431: characters 22-75 : The `code` argument for js.Syntax.code must be a string...
`DOMString` doesn't work. What's the alternative?
I am trying to create a test function: ``` int test(int integers[], int count) { int res = 0; for (int i = 0; i < count; i ++) res...
before I try to build I've installed emcc . haxe version Haxe Compiler 4.1.0-rc.1+4bf5cce05 1: haxelib git webidl https://github.com/ncannasse/webidl.git 2: git clone https://github.com/ncannasse/webidl.git 3 cd webidl/sample 4 haxelib dev webidl...
Also made it work without using `make`, by putting all sources in a temp file used by `emcpp`.
I am trying to compile bullet using webidl with Clang, but I'm getting these errors: ``` /Users/jefvel/project/libs/bullet/src/bullet.cpp:35:21: error: pasting formed 'u"delete() is not allowed on const value."', an invalid preprocessing...
Hi, Are static methods and namespaces supported? My example would look like: tdme.utils.Console.idl: ``` namespace tdme { namespace utils { interface Console { static void println(); } } } ```...
Hi guys.. I am very impressed with the work you have done here; I wish I had known about it sooner. Once I got up and running (thanks to @zicklag)...
> @zicklag ... while I have you here maybe you can answer something for me? What is the plan with regards to handling bindings for multiple c++ classes in the...