mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
32 lines
426 B
C
32 lines
426 B
C
![]() |
/*
|
||
|
* Copyright (c) 2020-2022, the SerenityOS developers.
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/StringView.h>
|
||
|
|
||
|
namespace Syntax {
|
||
|
|
||
|
enum class Language {
|
||
|
CMake,
|
||
|
CMakeCache,
|
||
|
Cpp,
|
||
|
CSS,
|
||
|
GitCommit,
|
||
|
GML,
|
||
|
HTML,
|
||
|
INI,
|
||
|
JavaScript,
|
||
|
PlainText,
|
||
|
Shell,
|
||
|
SQL,
|
||
|
};
|
||
|
|
||
|
StringView language_to_string(Language);
|
||
|
StringView common_language_extension(Language);
|
||
|
|
||
|
}
|