[docs] Add missing JavaDocs (#6146)

This commit is contained in:
Tyler Veness
2024-01-04 08:38:06 -08:00
committed by GitHub
parent 6e58db398d
commit f29a7d2e50
145 changed files with 1106 additions and 94 deletions

View File

@@ -17,18 +17,31 @@ namespace wpi::structparser {
* A lexed raw struct schema token.
*/
struct Token {
/** A lexed raw struct schema token kind. */
enum Kind {
/// Unknown.
kUnknown,
/// Integer.
kInteger,
/// Identifier.
kIdentifier,
/// Left square bracket.
kLeftBracket,
/// Right square bracket.
kRightBracket,
/// Left curly brace.
kLeftBrace,
/// Right curly brace.
kRightBrace,
/// Colon.
kColon,
/// Semicolon.
kSemicolon,
/// Comma.
kComma,
/// Equals.
kEquals,
/// End of input.
kEndOfInput,
};