v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
v8-date.h
Go to the documentation of this file.
1
// Copyright 2021 the V8 project authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
#ifndef INCLUDE_V8_DATE_H_
6
#define INCLUDE_V8_DATE_H_
7
8
#include "
v8-local-handle.h
"
// NOLINT(build/include_directory)
9
#include "
v8-object.h
"
// NOLINT(build/include_directory)
10
#include "
v8config.h
"
// NOLINT(build/include_directory)
11
12
namespace
v8
{
13
14
class
Context;
15
19
class
V8_EXPORT
Date
:
public
Object
{
20
public
:
21
static
V8_WARN_UNUSED_RESULT
MaybeLocal<Value>
New(
Local<Context>
context,
22
double
time);
23
24
static
V8_WARN_UNUSED_RESULT
MaybeLocal<Value>
Parse(
25
Local<Context>
context,
26
Local<String>
date_string);
27
32
double
ValueOf()
const
;
33
37
v8::Local<v8::String>
ToISOString()
const
;
38
42
v8::Local<v8::String>
ToUTCString()
const
;
43
44
V8_INLINE
static
Date
*
Cast
(
Value
* value) {
45
#ifdef V8_ENABLE_CHECKS
46
CheckCast(value);
47
#endif
48
return
static_cast<
Date
*
>
(
value
);
49
}
50
51
private
:
52
static
void
CheckCast(
Value
* obj);
53
};
54
55
}
// namespace v8
56
57
#endif
// INCLUDE_V8_DATE_H_
v8::Date
Definition
v8-date.h:19
v8::Date::Cast
static V8_INLINE Date * Cast(Value *value)
Definition
v8-date.h:44
v8::Local
Definition
v8-local-handle.h:267
v8::MaybeLocal
Definition
v8-local-handle.h:635
v8::Object
Definition
v8-object.h:233
v8::Value
Definition
v8-value.h:32
v8
Definition
api-arguments-inl.h:19
v8-local-handle.h
v8-object.h
v8config.h
V8_EXPORT
#define V8_EXPORT
Definition
v8config.h:800
V8_INLINE
#define V8_INLINE
Definition
v8config.h:500
V8_WARN_UNUSED_RESULT
#define V8_WARN_UNUSED_RESULT
Definition
v8config.h:671
value
std::unique_ptr< ValueMirror > value
Definition
value-mirror.cc:950
include
v8-date.h
Generated on Sun Apr 6 2025 21:08:50 for v8 by
1.12.0