This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository rhino.
commit d379719a6b243283234af9a869a41678df64dad5 Merge: 6839b5f 02a376e Author: Emmanuel Bourg <[email protected]> Date: Thu Jan 19 15:11:26 2017 +0100 Merge tag 'upstream/1.7.7' .gitattributes | 31 ++ .gitignore | 7 + README.md | 40 +- RELEASE-NOTES.md | 112 +++++ build.gradle | 160 ++++++++ build.properties | 4 +- gradle.properties | 5 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 52141 bytes gradle/wrapper/gradle-wrapper.properties | 6 + gradlew | 164 ++++++++ gradlew.bat | 90 ++++ maven/maven-pom.xml | 2 +- maven/maven-snapshot-deploy.sh | 2 +- maven/maven-staging-deploy.sh | 5 +- release-steps.txt | 33 ++ src/manifest | 6 +- src/org/mozilla/javascript/CodeGenerator.java | 3 + src/org/mozilla/javascript/Context.java | 58 ++- src/org/mozilla/javascript/Decompiler.java | 7 +- src/org/mozilla/javascript/IRFactory.java | 14 +- src/org/mozilla/javascript/IdFunctionObject.java | 4 + src/org/mozilla/javascript/NativeGlobal.java | 14 +- src/org/mozilla/javascript/NativeMath.java | 137 ++++++- src/org/mozilla/javascript/NativeNumber.java | 129 ++++++ src/org/mozilla/javascript/NativeString.java | 455 +++++++++++++-------- src/org/mozilla/javascript/Parser.java | 143 ++++--- src/org/mozilla/javascript/ScriptRuntime.java | 53 ++- src/org/mozilla/javascript/Token.java | 4 +- src/org/mozilla/javascript/ast/FunctionNode.java | 26 +- src/org/mozilla/javascript/ast/ObjectProperty.java | 27 +- src/org/mozilla/javascript/optimizer/Codegen.java | 4 +- .../mozilla/javascript/regexp/NativeRegExp.java | 2 +- .../javascript/resources/Messages.properties | 6 + testsrc/benchmarks/sunspider-0.9.1/run.js | 2 +- testsrc/benchmarks/v8-benchmarks-v6/run.js | 16 +- testsrc/build.xml | 17 +- testsrc/jstests/exceptionJson.jstest | 15 + testsrc/jstests/harmony/math-functions.js | 57 +++ testsrc/jstests/harmony/method-definition.js | 82 ++++ testsrc/jstests/harmony/number-is.js | 131 ++++++ testsrc/jstests/harmony/parse-int-float.js | 134 ++++++ testsrc/jstests/harmony/string-codePointAt.js | 93 +++++ testsrc/jstests/harmony/string-endsWith.js | 414 +++++++++++++++++++ testsrc/jstests/harmony/string-includes.js | 167 ++++++++ testsrc/jstests/harmony/string-normalize.js | 146 +++++++ testsrc/jstests/harmony/string-repeat.js | 84 ++++ testsrc/jstests/harmony/string-startsWith.js | 405 ++++++++++++++++++ testsrc/opt-1.tests | 2 +- testsrc/opt0.tests | 2 +- testsrc/opt9.tests | 2 +- .../javascript/benchmarks/SunSpiderBenchmark.java | 13 +- .../mozilla/javascript/benchmarks/V8Benchmark.java | 14 +- .../mozilla/javascript/drivers/JsTestsBase.java | 2 +- .../org/mozilla/javascript/drivers/RhinoTest.java | 3 +- .../javascript/drivers/ScriptTestsBase.java | 111 ++--- .../mozilla/javascript/drivers/StandardTests.java | 180 -------- .../org/mozilla/javascript/drivers/TestUtils.java | 2 +- testsrc/org/mozilla/javascript/tests/Issue176.js | 61 +++ .../org/mozilla/javascript/tests/Issue176Test.java | 46 +++ .../mozilla/javascript/tests/MozillaSuiteTest.java | 18 +- .../tests/commonjs/module/ComplianceTest.java | 108 ++--- .../tests/harmony/MathFunctionsTest.java | 12 + .../tests/harmony/MethodDefinitionTest.java | 13 + .../javascript/tests/harmony/NumberIsTest.java | 16 + .../tests/harmony/ParseIntFloatTest.java | 12 + .../tests/harmony/StringCodePointAtTest.java | 14 + .../tests/harmony/StringEndsWithTest.java | 14 + .../tests/harmony/StringIncludesTest.java | 13 + .../tests/harmony/StringNormalizeTest.java | 14 + .../javascript/tests/harmony/StringRepeatTest.java | 14 + .../tests/harmony/StringStartsWithTest.java | 14 + testsrc/tests/js1_5/Regress/regress-169559.js | 17 +- testsrc/tests/js1_5/Regress/regress-416628.js | 2 +- .../lc2/Methods/{method-006-n.js => method-006.js} | 6 +- .../javascript/tools/resources/Messages.properties | 7 +- .../org/mozilla/javascript/tools/shell/Global.java | 39 +- 76 files changed, 3611 insertions(+), 676 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/rhino.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

