mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-23 03:18:43 +08:00
update
This commit is contained in:
@@ -154,6 +154,13 @@ struct token
|
||||
int line;
|
||||
int type;
|
||||
std::string str;
|
||||
token& operator=(const token& tmp)
|
||||
{
|
||||
line=tmp.line;
|
||||
type=tmp.type;
|
||||
str=tmp.str;
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
||||
class nasal_lexer
|
||||
|
||||
Reference in New Issue
Block a user