aboutsummaryrefslogtreecommitdiff
path: root/tests/embind/embind.test.js
AgeCommit message (Collapse)Author
2013-05-04Remove more +x permissions on source or javascript filesSylvestre Ledru
2013-05-02Oops, fix a test leak.Chad Austin
2013-05-02Add a test for interface methods that return void.Chad Austin
2013-05-02Add isAliasOf for seeing if two embind handles point to the same underlying ↵Chad Austin
object. Conflicts: tests/embind/embind_test.cpp
2013-05-02checkpoint object handle compositionChad Austin
2013-04-18Add support for read-only properties.Chad Austin
2013-04-18Improve error messages from embind pointer marshalling and remove TODOs in ↵Jukka Jylänki
embind test code.
2013-04-18Removed embind class member this pointer 'instanceof' check when serializing ↵Jukka Jylänki
this to wire type, since instanceof was profiled to be slow. Instead, the correct instanceof enforcement is done in the upcastPointer function.
2013-04-18Add a new unit test that explicitly checks for the case when two different ↵Jukka Jylänki
classes happen to have member functions with the same name and signature - a reason why the 'instanceof' check exists in embind.js.
2013-04-18Match embind tests to reported exception.Jukka Jylanki
2013-04-18Finally! JSInterface is deadChad Austin
2013-04-18can pass ArrayBuffer to std::stringChad Austin
2013-04-18allow passing Int8Array and Uint8Array directly to std::stringChad Austin
2013-04-18cannot pass non-strings to std::string arguments :)Chad Austin
2013-04-18assert if, when trying to convert JS string to std::string, the JS string ↵Chad Austin
has code units that do not fit in 8 bits
2013-04-18Allow passing JavaScript strings to std::wstringChad Austin
2013-04-18Add support for returning std::wstringChad Austin
2013-04-18verify non-ascii data can be passed through std::stringChad Austin
2013-04-18allow optional implementation of non-abstract virtual methodsChad Austin
2013-04-18Kill validateThis for methodsChad Austin
2013-04-18Generalize class property access.Chad Austin
2013-04-12Stop using cxa_demangle in embind.Bruce Mitchener
With an updated libcxx, we no longer have libcxxabi in the include path, so we can't have the demangling code in the build.
2013-04-12Add support for index access to value_tuple and value_structChad Austin
2013-04-12Add support for overloading class member functions and class static ↵Jukka Jylanki
functions based on function argument count.
2013-04-12Allow value_tuple and value_struct to be registered as global constants. ↵Chad Austin
This involved reworking how value_struct and value_tuple are registered.
2013-04-12Add support for global constants.Chad Austin
2013-04-12Add support for registering overloads of free functions based on argument count.Jukka Jylanki
2013-04-12Clean up issues found with jshint.Jukka Jylanki
2013-04-12Add support for binding multiple class constructors with embind. The ctors ↵Jukka Jylanki
must have different number of arguments each.
2013-04-12Migrate embind tests from IMVU repository to emscripten repository.Jukka Jylanki