[Pkg-ocaml-maint-commits] [js-of-ocaml] 08/15: Merge tag 'upstream/2.5'

Mehdi Dogguy mehdi at moszumanska.debian.org
Sun Oct 18 08:48:23 UTC 2015


This is an automated email from the git hooks/post-receive script.

mehdi pushed a commit to branch master
in repository js-of-ocaml.

commit 1b0dade1ebc1116b52338d63f4a4133b44c78a7f
Merge: 3a36549 80dabb1
Author: Mehdi Dogguy <mehdi at debian.org>
Date:   Sun Oct 18 09:52:13 2015 +0200

    Merge tag 'upstream/2.5'
    
    Upstream version 2.5

 .gitignore                                   |   5 +-
 .ocp-indent                                  |   2 +
 CHANGES                                      |  18 +
 Makefile                                     |  30 +-
 Makefile.conf                                |  12 +-
 Makefile.toplevel                            |  33 +-
 README.md                                    |   8 +-
 VERSION                                      |   2 +-
 benchmarks/sources/ml/bdd.ml                 |  24 +-
 benchmarks/sources/ml/fannkuch_redux.ml      |   6 +-
 benchmarks/sources/ml/fannkuch_redux_2.ml    |   6 +-
 benchmarks/sources/ml/fft.ml                 |   4 +-
 benchmarks/sources/ml/quicksort.ml           |   4 +-
 benchmarks/sources/ml/soli.ml                |   2 +-
 compiler/.depend                             |  64 +-
 compiler/Makefile                            |  57 +-
 compiler/code.ml                             |  19 +
 compiler/code.mli                            |   5 +
 compiler/commonArg.ml                        |  93 +++
 compiler/{generate.mli => commonArg.mli}     |  15 +-
 compiler/compile.ml                          | 132 +----
 compiler/compileArg.ml                       | 238 ++++++++
 compiler/{js_tailcall.mli => compileArg.mli} |  30 +-
 compiler/driver.ml                           |  63 +-
 compiler/driver.mli                          |   8 +-
 compiler/eval.ml                             |   6 +
 compiler/generate.ml                         | 849 +++++++++++++++------------
 compiler/generate.mli                        |   4 +-
 compiler/inline.ml                           | 113 ++--
 compiler/instr.ml                            |  34 +-
 compiler/instr.mli                           |   5 +-
 compiler/javascript.ml                       |  50 +-
 compiler/javascript.mli                      |  52 +-
 compiler/js_assign.ml                        |   2 +-
 compiler/js_lexer.mll                        |   7 +-
 compiler/js_output.ml                        | 305 +++++-----
 compiler/js_output.mli                       |   5 +-
 compiler/js_parser.mly                       | 247 ++++----
 compiler/js_simpl.ml                         |  75 +--
 compiler/js_simpl.mli                        |  12 +-
 compiler/js_tailcall.ml                      |  41 +-
 compiler/js_tailcall.mli                     |   4 +-
 compiler/js_token.ml                         |   6 +-
 compiler/js_token.mli                        |   2 +-
 compiler/js_traverse.ml                      | 324 +++++-----
 compiler/js_traverse.mli                     |  37 +-
 compiler/linker.ml                           |  76 ++-
 compiler/minify.ml                           |  77 +--
 compiler/minifyArg.ml                        |  84 +++
 compiler/{js_output.mli => minifyArg.mli}    |  17 +-
 compiler/option.ml                           |  74 ++-
 compiler/option.mli                          |  25 +-
 compiler/parse_bytecode.ml                   | 694 ++++++++++++----------
 compiler/parse_bytecode.mli                  |  10 +-
 compiler/pretty_print.ml                     |  20 +-
 compiler/primitive.ml                        |   7 +
 compiler/primitive.mli                       |   3 +
 compiler/source_map.ml                       |  85 +--
 compiler/specialize_js.ml                    |  94 ++-
 compiler/util.ml                             |  43 +-
 compiler/util.mli                            |   4 +-
 doc/Makefile                                 |   4 +-
 doc/manual/src/menu.wiki                     |   1 -
 doc/manual/src/ocamlbuild.wiki               |  37 --
 doc/manual/src/options.wiki                  |  34 +-
 doc/manual/src/overview.wiki                 |   2 +-
 examples/Makefile.common                     |   2 +-
 examples/boulderdash/Makefile                |   2 +-
 examples/graph_viewer/Makefile               |   2 +-
 examples/hyperbolic/Makefile                 |   2 +-
 examples/hyperbolic/hypertree.ml             |  10 +-
 examples/minesweeper/minesweeper.ml          |   2 +-
 examples/webgl/Makefile                      |   2 +-
 js_of_ocaml.install                          |   4 +
 jsoo_tools/Makefile                          |  31 +-
 jsoo_tools/jsoo_common.ml                    |   8 +-
 jsoo_tools/jsoo_mkcmis.ml                    |   3 +-
 jsoo_tools/jsoo_mktop.ml                     |   4 +-
 lib/META                                     |   5 +-
 lib/Makefile                                 |  45 +-
 lib/cSS.ml                                   |   2 +-
 lib/deriving_json/deriving_Json.ml           |   4 +-
 lib/deriving_json/deriving_Json_lexer.mll    | 342 +++++------
 lib/dom.ml                                   |  13 +
 lib/dom.mli                                  |  13 +
 lib/dom_html.ml                              |   1 +
 lib/dom_html.mli                             |   1 +
 lib/js.ml                                    |  17 +-
 lib/js.mli                                   |  13 +-
 lib/json.ml                                  |   2 +-
 lib/jsonp.ml                                 |   5 +-
 lib/lwt_js_events.ml                         |  12 +-
 lib/toplevel/jsooTop.ml                      |  14 +-
 lib/tyxml/tyxml_js.ml                        |   2 +-
 lib/url.ml                                   |   4 +-
 lib/xmlHttpRequest.ml                        |   2 +-
 ocamlbuild/Makefile                          |   3 +-
 ocamlbuild/_tags                             |   2 +-
 ocamlbuild/ocamlbuild_js_of_ocaml.ml         |  16 +-
 ocamlbuild/ocamlbuild_js_of_ocaml.mli        |  76 ++-
 opam                                         |   6 +-
 runtime/fs.js                                |  21 +-
 runtime/int64.js                             |  12 +-
 runtime/internalMod.js                       | 103 ++--
 runtime/io.js                                | 139 +++--
 runtime/jslib_js_of_ocaml.js                 |  50 +-
 runtime/lexing.js                            |  16 +-
 runtime/marshal.js                           | 496 ++++++++--------
 runtime/md5.js                               |  32 +-
 runtime/mlString.js                          | 597 +++++++++++--------
 runtime/parsing.js                           |  34 +-
 runtime/polyfill/classlist.js                |   3 +-
 runtime/polyfill/json.js                     |   1 +
 runtime/stdlib.js                            | 171 ++++--
 runtime/weak.js                              |   3 +-
 tests/Makefile.common                        |   4 +-
 tests/dir/json_convert.ml                    |  10 +-
 toplevel/Makefile                            |   7 +-
 toplevel/examples.ml                         |  22 +-
 toplevel/toplevel.ml                         |  61 +-
 120 files changed, 4012 insertions(+), 2893 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ocaml-maint/packages/js-of-ocaml.git



More information about the Pkg-ocaml-maint-commits mailing list