aboutsummaryrefslogtreecommitdiff
path: root/system/include
AgeCommit message (Collapse)Author
2013-05-30implement std::exception::what()Alon Zakai
2013-05-28implement ~exception in header, to make std::exception usable; fixes #1198Alon Zakai
2013-05-27emscripten_exit_with_live_runtimeAlon Zakai
2013-05-17Add support for multiple overloaded smart pointer constructors.Chad Austin
2013-05-17Workaround a bug in LLVM? Emscripten? that causes it to generate terrible ↵Chad Austin
code when registering class methods and properties.
2013-05-17Kill some dead code.Chad Austin
2013-05-17We can get away with passing memory_view on the stack here...Chad Austin
2013-05-17Add support for (fast?) memory_view objects. If C++ passes a memory_view to ↵Chad Austin
JS, it gets converted into a typed array object on the other side. Intended for WebGL.
2013-05-17Checkpoint work towards making vtable->JS calls faster.Chad Austin
2013-05-08include netinet/in.h in netdb.h, like linux does; fixes #1153Alon Zakai
2013-05-04Remove more +x permissions on source or javascript filesSylvestre Ledru
2013-05-02Add a benchmark for calling from C++ into JS via interfacesChad Austin
2013-05-02Snip some dead codeChad Austin
2013-05-02namespace the binding struct a bit moreChad Austin
2013-05-02snip dead codeChad Austin
2013-05-02Add a select_const for selecting the const method implementation if there ↵Chad Austin
are only two. Conflicts: tests/embind/embind_test.cpp
2013-04-29add glew test and some degree of supportAlon Zakai
2013-04-19Merge pull request #1060 from arlolra/socketpairAlon Zakai
Socketpair
2013-04-18Make select_overload work for member functionsChad Austin
2013-04-18calloperator wasn't pulling its own weight. We probably should have a ↵Chad Austin
higher-level register_function though...
2013-04-18Add support for read-only properties.Chad Austin
2013-04-18switch to EMSCRIPTEN_SYMBOL which improves code size a bit by storing the ↵Chad Austin
pointer to the string literal as a constant as opposed to a global variable.
2013-04-18fix readLatin1String to actually cover the range of latin-1 characters and ↵Chad Austin
add support for interned string symbols to emscripten::val
2013-04-18Add perfect forwarding throughout emscripten::val. This shaves 50 KB off ↵Chad Austin
the non-minified JS in Northstar.
2013-04-18Finally! JSInterface is deadChad Austin
2013-04-18implement perfect forwarding in embindChad Austin
2013-04-18Support returning movable typesChad Austin
2013-04-18Add support for returning std::wstringChad Austin
2013-04-18Removed dependency on Northstar.Bill Welden
2013-04-18Support for intrusive pointers. This dependency on Northstar must be removed ↵Bill Welden
before pusing embind to GitHub.
2013-04-18fix a bug in optional argument listsChad Austin
2013-04-18allow optional implementation of non-abstract virtual methodsChad Austin
2013-04-18Generalize class property access.Chad Austin
2013-04-13socketpairArlo Breault
2013-04-12Revert "Bring back EMSCRIPTEN_KEEPALIVE" - instead directly use the ↵Jukka Jylänki
__attribute__((used)) macro in embind/bind.cpp. This reverts commit cbf636a88bcfcabf084331fc4d8a445cacb158f9.
2013-04-12Allow instantiation of subclass wrappers with smart pointers.Chad Austin
2013-04-12support overloaded index accessChad Austin
2013-04-12Add support for index access to value_tuple and value_structChad Austin
2013-04-12refactoringChad Austin
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 a convenience for selecting a particular overload when binding a function.Chad Austin
2013-04-12Generalize and support mix-and-match member/non-member getter/setter for ↵Chad Austin
value types.
2013-04-12add value_struct and value_tuple support for member function getters and ↵Chad Austin
setters.
2013-04-12Support accessing value struct and tuple fields and elements via base class ↵Chad Austin
pointers.
2013-04-12Generalize support for struct fieldsChad Austin
2013-04-12Further generalize support for tuple elements, and in the meantime, fix a ↵Chad Austin
bug that made it into one variant of the function but not the other...
2013-04-12Restructure and generalize tuple accessors.Chad Austin
2013-04-12Move context generation/copying out of JavaScript and into C++, where we'll ↵Chad Austin
be able to do some cool things in the future.
2013-04-12Fix passing of UINT_MAX and ULONG_MAX from C++ to JS function. LLVM doesn't ↵Jukka Jylanki
have u32 type, so UINT_MAX literal comes out as 'i32 -1' literal to JS, which whould treat it as a negative -1.0 double.