Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: src/runtime.js

Issue 1319133002: [es6] Implement spec compliant ToName (actually ToPropertyKey). (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@ToPrimitive
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/macros.py ('k') | src/runtime/runtime.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime.js
diff --git a/src/runtime.js b/src/runtime.js
index 1ef4e973fdc8dd1baff155916e15b1e75155cc88..72871e60c7b2a28c552ac90e66d2c491ae8f8949 100644
--- a/src/runtime.js
+++ b/src/runtime.js
@@ -19,7 +19,6 @@ var $sameValue;
var $sameValueZero;
var $toInteger;
var $toLength;
-var $toName;
var $toNumber;
var $toPositiveInteger;
var $toPrimitive;
@@ -434,7 +433,7 @@ function IN(x) {
}
return %HasElement(x, this);
}
- return %HasProperty(x, %to_name(this));
+ return %HasProperty(x, this);
}
@@ -616,12 +615,6 @@ function TO_STRING() {
}
-// Convert the receiver to a string or symbol - forward to ToName.
-function TO_NAME() {
- return %to_name(this);
-}
-
-
/* -------------------------------------
- - - C o n v e r s i o n s - - -
-------------------------------------
@@ -690,12 +683,6 @@ function NonStringToString(x) {
}
-// ES6 symbols
-function ToName(x) {
- return IS_SYMBOL(x) ? x : ToString(x);
-}
-
-
// ECMA-262, section 9.4, page 34.
function ToInteger(x) {
if (%_IsSmi(x)) return x;
@@ -833,7 +820,6 @@ $sameValue = SameValue;
$sameValueZero = SameValueZero;
$toInteger = ToInteger;
$toLength = ToLength;
-$toName = ToName;
$toNumber = ToNumber;
$toPositiveInteger = ToPositiveInteger;
$toPrimitive = ToPrimitive;
@@ -877,7 +863,6 @@ $toString = ToString;
"string_add_right_builtin", STRING_ADD_RIGHT,
"sub_builtin", SUB,
"sub_strong_builtin", SUB_STRONG,
- "to_name_builtin", TO_NAME,
"to_string_builtin", TO_STRING,
]);
@@ -887,7 +872,6 @@ $toString = ToString;
"non_string_to_string", NonStringToString,
"to_integer_fun", ToInteger,
"to_length_fun", ToLength,
- "to_name", ToName,
"to_number_fun", ToNumber,
"to_primitive", ToPrimitive,
"to_string_fun", ToString,
@@ -896,7 +880,6 @@ $toString = ToString;
utils.Export(function(to) {
to.ToBoolean = ToBoolean;
to.ToLength = ToLength;
- to.ToName = ToName;
to.ToNumber = ToNumber;
to.ToPrimitive = ToPrimitive;
to.ToString = ToString;
« no previous file with comments | « src/macros.py ('k') | src/runtime/runtime.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698