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

Unified Diff: src/execution.h

Issue 1556333002: [runtime] Migrate several Date builtins to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments Created 4 years, 11 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/date.cc ('k') | src/execution.cc » ('j') | no next file with comments »
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 afbd1da45b2c2854c42cbe724671a772e1441f21..9feda335a23fb77269397af86dfbcd596d62ac7a 100644
--- a/src/execution.h
+++ b/src/execution.h
@@ -13,9 +13,6 @@
namespace v8 {
namespace internal {
-// Forward declarations.
-class JSRegExp;
-
class Execution final : public AllStatic {
public:
// Call a function, the caller supplies a receiver and an array
@@ -56,10 +53,6 @@ class Execution final : public AllStatic {
MUST_USE_RESULT static MaybeHandle<Object> ToObject(
Isolate* isolate, Handle<Object> obj);
- // Create a new date object from 'time'.
- MUST_USE_RESULT static MaybeHandle<Object> NewDate(
- Isolate* isolate, double time);
-
static Handle<String> GetStackTraceLine(Handle<Object> recv,
Handle<JSFunction> fun,
Handle<Object> pos,
« no previous file with comments | « src/date.cc ('k') | src/execution.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698