v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
runtime-temporal.cc
Go to the documentation of this file.
1// Copyright 2022 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
7
8namespace v8 {
9namespace internal {
10
11RUNTIME_FUNCTION(Runtime_IsInvalidTemporalCalendarField) {
12 HandleScope scope(isolate);
13 DCHECK_EQ(2, args.length());
17 isolate, temporal::IsInvalidTemporalCalendarField(isolate, s, f));
18}
19
20} // namespace internal
21} // namespace v8
#define RUNTIME_FUNCTION(Name)
Definition arguments.h:162
#define RETURN_RESULT_OR_FAILURE(isolate, call)
Definition isolate.h:264
base::Vector< const DirectHandle< Object > > args
Definition execution.cc:74
MaybeDirectHandle< Oddball > IsInvalidTemporalCalendarField(Isolate *isolate, DirectHandle< String > next_value, DirectHandle< FixedArray > fields_name)
#define DCHECK_EQ(v1, v2)
Definition logging.h:485