mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-28 12:10:28 +00:00
There's nothing about this that's specific to Tokens, and moving it makes it easier to use for other types. We'll need this for the following commits.
14 lines
217 B
C
14 lines
217 B
C
/*
|
|
* Copyright (c) 2026, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
struct SourcePosition {
|
|
size_t line { 0 };
|
|
size_t column { 0 };
|
|
};
|