]> git.mxchange.org Git - simgear.git/commit
Added JavaScript interpreter, repackaged by Tony Peden. It's not tied
authordavid <david>
Thu, 18 Jul 2002 20:27:46 +0000 (20:27 +0000)
committerdavid <david>
Thu, 18 Jul 2002 20:27:46 +0000 (20:27 +0000)
commitc8efd0a465ca02a03972ea7a8407780780ccaef8
treea76f57cd8e559cdac0c40989c1bd23e8298bc035
parentdb60139845ed8503db9d58578a9f9e4488c6efd8
Added JavaScript interpreter, repackaged by Tony Peden.  It's not tied
into anything yet, but it builds OK inside SimGear.
40 files changed:
configure.in
simgear/Makefile.am
simgear/interpreter/.cvsignore [new file with mode: 0644]
simgear/interpreter/Makefile.am [new file with mode: 0644]
simgear/interpreter/exbase.cc [new file with mode: 0644]
simgear/interpreter/exgen.cc [new file with mode: 0644]
simgear/interpreter/interpreter.cxx [new file with mode: 0644]
simgear/interpreter/interpreter.hxx [new file with mode: 0644]
simgear/interpreter/ixlib_base.hh [new file with mode: 0644]
simgear/interpreter/ixlib_exbase.hh [new file with mode: 0644]
simgear/interpreter/ixlib_exgen.hh [new file with mode: 0644]
simgear/interpreter/ixlib_garbage.hh [new file with mode: 0644]
simgear/interpreter/ixlib_i18n.hh [new file with mode: 0644]
simgear/interpreter/ixlib_javascript.hh [new file with mode: 0644]
simgear/interpreter/ixlib_js_internals.hh [new file with mode: 0644]
simgear/interpreter/ixlib_numconv.hh [new file with mode: 0644]
simgear/interpreter/ixlib_numeric.hh [new file with mode: 0644]
simgear/interpreter/ixlib_random.hh [new file with mode: 0644]
simgear/interpreter/ixlib_re.hh [new file with mode: 0644]
simgear/interpreter/ixlib_re_impl.hh [new file with mode: 0644]
simgear/interpreter/ixlib_scanjs.hh [new file with mode: 0644]
simgear/interpreter/ixlib_scanner.hh [new file with mode: 0644]
simgear/interpreter/ixlib_string.hh [new file with mode: 0644]
simgear/interpreter/ixlib_token_javascript.hh [new file with mode: 0644]
simgear/interpreter/ixlib_token_lex.hh [new file with mode: 0644]
simgear/interpreter/js_array.cc [new file with mode: 0644]
simgear/interpreter/js_declaration.cc [new file with mode: 0644]
simgear/interpreter/js_expression.cc [new file with mode: 0644]
simgear/interpreter/js_instruction.cc [new file with mode: 0644]
simgear/interpreter/js_interpreter.cc [new file with mode: 0644]
simgear/interpreter/js_library.cc [new file with mode: 0644]
simgear/interpreter/js_value.cc [new file with mode: 0644]
simgear/interpreter/lex.javascript.cc [new file with mode: 0644]
simgear/interpreter/lex.javascript.yy [new file with mode: 0644]
simgear/interpreter/main.cc [new file with mode: 0644]
simgear/interpreter/numconv.cc [new file with mode: 0644]
simgear/interpreter/numeric.cc [new file with mode: 0644]
simgear/interpreter/re.cc [new file with mode: 0644]
simgear/interpreter/scanner.cc [new file with mode: 0644]
simgear/interpreter/string.cc [new file with mode: 0644]