/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::DOM { class Position { public: Position() { } Position(Node&, unsigned offset); ~Position(); bool is_valid() const { return m_node; } Node* node() { return m_node; } const Node* node() const { return m_node; } unsigned offset() const { return m_offset; } void set_offset(unsigned value) { m_offset = value; } bool operator==(const Position& other) const { return m_node == other.m_node && m_offset == other.m_offset; } bool operator!=(const Position& other) const { return !(*this == other); } String to_string() const; private: RefPtr m_node; unsigned m_offset { 0 }; }; } namespace AK { template<> struct Formatter : Formatter { void format(FormatBuilder& builder, const Web::DOM::Position& value) { Formatter::format(builder, value.to_string()); } }; }