Skip to content

Commit

Permalink
fix: Removed print from keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
alinalihassan committed May 6, 2022
1 parent be3e0eb commit df1ba9a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/liblesma/Token/Token.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ static std::map<std::string, TokenType> g_reserved_map{
{"not", TokenType::NOT},
{"null", TokenType::NIL},
{"or", TokenType::OR},
{"print", TokenType::PRINT},
{"return", TokenType::RETURN},
{"this", TokenType::THIS},
{"true", TokenType::TRUE_},
Expand Down
1 change: 0 additions & 1 deletion src/liblesma/Token/TokenType.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ namespace lesma {
OR,
NOT,
EXTERN_FUNC,
PRINT,
RETURN,
SUPER,
THIS,
Expand Down

0 comments on commit df1ba9a

Please sign in to comment.