chromium/v8/src/interpreter/bytecode-flags-and-tokens.cc

// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/interpreter/bytecode-flags-and-tokens.h"

#include "src/ast/ast-value-factory.h"
#include "src/ast/ast.h"
#include "src/objects/objects-inl.h"

namespace v8 {
namespace internal {
namespace interpreter {

// static
uint8_t CreateArrayLiteralFlags::Encode(bool use_fast_shallow_clone,
                                        int runtime_flags) {}

// static
uint8_t CreateObjectLiteralFlags::Encode(int runtime_flags,
                                         bool fast_clone_supported) {}

// static
uint8_t CreateClosureFlags::Encode(bool pretenure, bool is_function_scope,
                                   bool might_always_turbofan) {}

// static
TestTypeOfFlags::LiteralFlag TestTypeOfFlags::GetFlagForLiteral(
    const AstStringConstants* ast_constants, Literal* literal) {}

// static
uint8_t TestTypeOfFlags::Encode(LiteralFlag literal_flag) {}

// static
TestTypeOfFlags::LiteralFlag TestTypeOfFlags::Decode(uint8_t raw_flag) {}

// static
const char* TestTypeOfFlags::ToString(LiteralFlag literal_flag) {}

// static
uint8_t StoreLookupSlotFlags::Encode(LanguageMode language_mode,
                                     LookupHoistingMode lookup_hoisting_mode) {}

// static
LanguageMode StoreLookupSlotFlags::GetLanguageMode(uint8_t flags) {}

// static
bool StoreLookupSlotFlags::IsLookupHoistingMode(uint8_t flags) {}

}  // namespace interpreter
}  // namespace internal
}  // namespace v8