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

Unified Diff: src/execution.h

Issue 1306303003: [es6] Implement spec compliant ToPrimitive in the runtime. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address Michis comments. 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/debug/debug.cc ('k') | src/execution.cc » ('j') | src/objects.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/execution.h
diff --git a/src/execution.h b/src/execution.h
index 2c07a64aaecc5409064ba1bc5eaf2f2edcf73880..d7996d1904b3098d3727d230275535f43fb9b354 100644
--- a/src/execution.h
+++ b/src/execution.h
@@ -59,10 +59,6 @@ class Execution final : public AllStatic {
Handle<Object> argv[],
MaybeHandle<Object>* exception_out = NULL);
- // ECMA-262 9.3
- MUST_USE_RESULT static MaybeHandle<Object> ToNumber(
- Isolate* isolate, Handle<Object> obj);
-
// ECMA-262 9.4
MUST_USE_RESULT static MaybeHandle<Object> ToInteger(
Isolate* isolate, Handle<Object> obj);
@@ -81,10 +77,6 @@ class Execution final : public AllStatic {
Isolate* isolate, Handle<Object> obj);
// ECMA-262 9.8
- MUST_USE_RESULT static MaybeHandle<Object> ToString(
- Isolate* isolate, Handle<Object> obj);
-
- // ECMA-262 9.8
MUST_USE_RESULT static MaybeHandle<Object> ToDetailString(
Isolate* isolate, Handle<Object> obj);
« no previous file with comments | « src/debug/debug.cc ('k') | src/execution.cc » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698