
This moves some stuff around to make LibGUI depend on LibSyntax instead of the other way around, as not every application that wishes to do syntax highlighting is necessarily a LibGUI (or even a GUI) application.
16 lines
254 B
C++
16 lines
254 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Format.h>
|
|
#include <LibSyntax/TextPosition.h>
|
|
|
|
namespace GUI {
|
|
|
|
using TextPosition = Syntax::TextPosition;
|
|
|
|
}
|