chromium/v8/src/numbers/integer-literal.h

// Copyright 2022 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.

#ifndef V8_NUMBERS_INTEGER_LITERAL_H_
#define V8_NUMBERS_INTEGER_LITERAL_H_

#include <optional>

#include "src/common/globals.h"

namespace v8 {
namespace internal {

class IntegerLiteral {};

inline bool operator==(const IntegerLiteral& x, const IntegerLiteral& y) {}

inline bool operator!=(const IntegerLiteral& x, const IntegerLiteral& y) {}

inline std::ostream& operator<<(std::ostream& stream,
                                const IntegerLiteral& literal) {}

inline IntegerLiteral operator|(const IntegerLiteral& x,
                                const IntegerLiteral& y) {}

IntegerLiteral operator<<(const IntegerLiteral& x, const IntegerLiteral& y);
IntegerLiteral operator+(const IntegerLiteral& x, const IntegerLiteral& y);

}  // namespace internal
}  // namespace v8
#endif  // V8_NUMBERS_INTEGER_LITERAL_H_