diff options
author | Evan Wallace <evan.exe@gmail.com> | 2015-08-17 00:56:54 -0700 |
---|---|---|
committer | Evan Wallace <evan.exe@gmail.com> | 2015-10-14 21:15:57 -0700 |
commit | 224e33ed09235628938970f6c672d6e2a69f5c6c (patch) | |
tree | c14fb6ca13d4cbd1ea71b705a0b892daba556a2c /.gitignore | |
parent | 94680f5483593b1a48c79b516d153fd432b3f2e8 (diff) | |
download | flatbuffers-224e33ed09235628938970f6c672d6e2a69f5c6c.tar.gz flatbuffers-224e33ed09235628938970f6c672d6e2a69f5c6c.tar.bz2 flatbuffers-224e33ed09235628938970f6c672d6e2a69f5c6c.zip |
Add support for JavaScript code generation
This adds a JavaScript language target. The generated JavaScript uses Google
Closure Compiler type annotations and can be compiled using the advanced
compilation mode, which performs type checking and optimizations such as
inlining and dead code elimination. The generated JavaScript also exports all
generated symbols for use with Node.js and RequireJS. This export behavior
can be turned off with the --no-js-exports flag for use with Google Closure
Compiler.
Diffstat (limited to '.gitignore')
-rwxr-xr-x | .gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -44,6 +44,7 @@ snapshot.sh tests/go_gen tests/monsterdata_java_wire.mon tests/monsterdata_go_wire.mon +tests/monsterdata_javascript_wire.mon CMakeLists.txt.user CMakeScripts/** CTestTestfile.cmake @@ -55,4 +56,4 @@ java/.idea java/*.iml java/target **/*.pyc -.idea
\ No newline at end of file +.idea |