diff options
author | Chad Austin <chad@imvu.com> | 2013-01-22 19:14:02 -0800 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2013-04-12 14:23:34 +0300 |
commit | ba7a7200ec2737c9890408e906ebe6bc2b9ca69c (patch) | |
tree | c7f5003617d70884a0dcaca850a6ec760f2de514 | |
parent | 15fa455b01fc5c498994c08882e80cfaeffc1983 (diff) |
Document operators that are not exposed
-rw-r--r-- | system/include/emscripten/val.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/include/emscripten/val.h b/system/include/emscripten/val.h index 22a7776a..857a1bdf 100644 --- a/system/include/emscripten/val.h +++ b/system/include/emscripten/val.h @@ -47,6 +47,22 @@ namespace emscripten { class val { public: + // missing operators: + // * delete + // * in + // * instanceof + // * typeof + // * ! ~ - + ++ -- + // * * / % + // * + - + // * << >> >>> + // * < <= > >= + // * == != === !== + // * & ^ | && || ?: + // + // exposing void, comma, and conditional is unnecessary + // same with: = += -= *= /= %= <<= >>= >>>= &= ^= |= + static val array() { return val(internal::_emval_new_array()); } |