Skip to content

Commit

Permalink
LibCpp: Add 4 new types
Browse files Browse the repository at this point in the history
Adds the following: ByteString, IPv6Address, Position, Token
  • Loading branch information
logkos authored and timschumi committed Sep 14, 2024
1 parent fe8a64d commit d933e07
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Userland/Libraries/LibCpp/Lexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ constexpr StringView s_known_types[] = {
"Bitmap"sv,
"ByteBuffer"sv,
"Bytes"sv,
"ByteString"sv,
"Checked"sv,
"CircularDeque"sv,
"CircularQueue"sv,
Expand All @@ -146,6 +147,7 @@ constexpr StringView s_known_types[] = {
"HashMap"sv,
"HashTable"sv,
"IPv4Address"sv,
"IPv6Address"sv,
"IntrusiveList"sv,
"IntrusiveList"sv,
"JsonArray"sv,
Expand All @@ -159,6 +161,7 @@ constexpr StringView s_known_types[] = {
"NonnullRefPtr"sv,
"Optional"sv,
"OwnPtr"sv,
"Position"sv,
"ReadonlyBytes"sv,
"RedBlackTree"sv,
"RefPtr"sv,
Expand All @@ -171,6 +174,7 @@ constexpr StringView s_known_types[] = {
"StringBuilder"sv,
"StringImpl"sv,
"StringView"sv,
"Token"sv,
"Utf8View"sv,
"Variant"sv,
"Vector"sv,
Expand Down

0 comments on commit d933e07

Please sign in to comment.