V8 API Reference, 7.2.502.16 (for Deno 0.2.4)
builtins-collections-gen.h
1 // Copyright 2018 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 V8_BUILTINS_BUILTINS_COLLECTIONS_GEN_H_
6 #define V8_BUILTINS_BUILTINS_COLLECTIONS_GEN_H_
7 
8 #include "src/code-stub-assembler.h"
9 
10 namespace v8 {
11 namespace internal {
12 
13 using compiler::Node;
14 template <class T>
15 using TNode = compiler::TNode<T>;
16 
17 void BranchIfIterableWithOriginalKeyOrValueMapIterator(
18  compiler::CodeAssemblerState* state, TNode<Object> iterable,
19  TNode<Context> context, compiler::CodeAssemblerLabel* if_true,
20  compiler::CodeAssemblerLabel* if_false);
21 
22 void BranchIfIterableWithOriginalValueSetIterator(
23  compiler::CodeAssemblerState* state, TNode<Object> iterable,
24  TNode<Context> context, compiler::CodeAssemblerLabel* if_true,
25  compiler::CodeAssemblerLabel* if_false);
26 
27 } // namespace internal
28 } // namespace v8
29 
30 #endif // V8_BUILTINS_BUILTINS_COLLECTIONS_GEN_H_
Definition: libplatform.h:13