Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rhuanjl committed Aug 23, 2018
1 parent 1ffeec2 commit 864729d
Show file tree
Hide file tree
Showing 12 changed files with 22,396 additions and 22,389 deletions.
3 changes: 3 additions & 0 deletions lib/Runtime/Base/JnDirectFields.h
Expand Up @@ -140,6 +140,8 @@ ENTRY(every)
ENTRY(exec)
ENTRY2(false_, _u("false")) // "false" cannot be an identifier in C++ so using "false_" instead
ENTRY(flags)
ENTRY(flat)
ENTRY(flatMap)
ENTRY(fill)
ENTRY(filter)
ENTRY(finally)
Expand All @@ -154,6 +156,7 @@ ENTRY(freeze)
ENTRY(from)
ENTRY(fromCharCode)
ENTRY(fromCodePoint)
ENTRY(fromEntries)
ENTRY(function)
ENTRY(Function)
ENTRY(getDate)
Expand Down
11,036 changes: 5,518 additions & 5,518 deletions lib/Runtime/Library/InJavascript/Intl.js.bc.32b.h

Large diffs are not rendered by default.

11,035 changes: 5,518 additions & 5,517 deletions lib/Runtime/Library/InJavascript/Intl.js.bc.64b.h

Large diffs are not rendered by default.

9,676 changes: 4,838 additions & 4,838 deletions lib/Runtime/Library/InJavascript/Intl.js.nojit.bc.32b.h

Large diffs are not rendered by default.

9,675 changes: 4,838 additions & 4,837 deletions lib/Runtime/Library/InJavascript/Intl.js.nojit.bc.64b.h

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/Runtime/Library/JsBuiltIn/JsBuiltIn.js
Expand Up @@ -421,7 +421,7 @@
platform.registerFunction(FunctionsEnum.ObjectFromEntries, function (iterable) {
// #sec-object.fromentries
"use strict";
if (this === null || this === undefined) {
if (iterable === null || iterable === undefined) {
__chakraLibrary.raiseNeedObject("Object.prototype.fromEntries");
}

Expand Down
880 changes: 440 additions & 440 deletions lib/Runtime/Library/JsBuiltIn/JsBuiltIn.js.bc.32b.h

Large diffs are not rendered by default.

880 changes: 440 additions & 440 deletions lib/Runtime/Library/JsBuiltIn/JsBuiltIn.js.bc.64b.h

Large diffs are not rendered by default.

793 changes: 396 additions & 397 deletions lib/Runtime/Library/JsBuiltIn/JsBuiltIn.js.nojit.bc.32b.h

Large diffs are not rendered by default.

793 changes: 396 additions & 397 deletions lib/Runtime/Library/JsBuiltIn/JsBuiltIn.js.nojit.bc.64b.h

Large diffs are not rendered by default.

9 changes: 6 additions & 3 deletions test/DebuggerCommon/ES6_intl_simple_attach.js.dbg.baseline
Expand Up @@ -57,7 +57,8 @@
"is": "function <large string>",
"assign": "function <large string>",
"values": "function <large string>",
"entries": "function <large string>"
"entries": "function <large string>",
"fromEntries": "function <large string>"
},
"hasOwnProperty": {
"#__proto__": "function <large string>",
Expand Down Expand Up @@ -205,7 +206,8 @@
"is": "function <large string>",
"assign": "function <large string>",
"values": "function <large string>",
"entries": "function <large string>"
"entries": "function <large string>",
"fromEntries": "function <large string>"
},
"hasOwnProperty": {
"#__proto__": "function <large string>",
Expand Down Expand Up @@ -353,7 +355,8 @@
"is": "function <large string>",
"assign": "function <large string>",
"values": "function <large string>",
"entries": "function <large string>"
"entries": "function <large string>",
"fromEntries": "function <large string>"
},
"hasOwnProperty": {
"#__proto__": "function <large string>",
Expand Down
3 changes: 2 additions & 1 deletion test/DebuggerCommon/symbols.js.dbg.baseline
Expand Up @@ -32,7 +32,8 @@
"is": "function <large string>",
"assign": "function <large string>",
"values": "function <large string>",
"entries": "function <large string>"
"entries": "function <large string>",
"fromEntries": "function <large string>"
},
"hasOwnProperty": {
"#__proto__": "function <large string>",
Expand Down

0 comments on commit 864729d

Please sign in to comment.