top
|
up
| prev |
next
Keyword Struct
Definition at line
13
of
Keyword.hpp
Constructors
Keyword
()
Keyword
(
const
char32_t
* str_,
int
tokenID_)
Member Variables
const
char32_t
*
str
int
tokenID
Constructor Details
Keyword Constructor
soulng::lexer::Keyword::Keyword()
Definition at line
15
of
Keyword.hpp
:
15
:
str
(
nullptr
)
,
tokenID
(
INVALID_TOKEN
)
{
}
Keyword Constructor
soulng::lexer::Keyword::Keyword(
const
char32_t
* str_,
int
tokenID_)
Definition at line
16
of
Keyword.hpp
:
16
:
str
(
str_
)
,
tokenID
(
tokenID_
)
{
}
top
|
up
| prev |
next