mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:28:12 +00:00
JSSpecCompiler: Make -xspec capable of parsing the whole specification
... in theory. In practice, we fail to parse all of the functions.
This commit is contained in:
parent
483e195e48
commit
14ee25b8ba
9 changed files with 255 additions and 58 deletions
|
@ -13,6 +13,8 @@ namespace JSSpecCompiler {
|
|||
|
||||
inline constexpr StringView tag_emu_alg = "emu-alg"sv;
|
||||
inline constexpr StringView tag_emu_clause = "emu-clause"sv;
|
||||
inline constexpr StringView tag_emu_import = "emu-import"sv;
|
||||
inline constexpr StringView tag_emu_intro = "emu-intro"sv;
|
||||
inline constexpr StringView tag_emu_val = "emu-val"sv;
|
||||
inline constexpr StringView tag_emu_xref = "emu-xref"sv;
|
||||
inline constexpr StringView tag_h1 = "h1"sv;
|
||||
|
@ -20,6 +22,7 @@ inline constexpr StringView tag_li = "li"sv;
|
|||
inline constexpr StringView tag_ol = "ol"sv;
|
||||
inline constexpr StringView tag_p = "p"sv;
|
||||
inline constexpr StringView tag_span = "span"sv;
|
||||
inline constexpr StringView tag_specification = "specification"sv;
|
||||
inline constexpr StringView tag_var = "var"sv;
|
||||
|
||||
inline constexpr StringView attribute_aoid = "aoid"sv;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue