Initial commit, support for lexing symbols and numericals.
This commit is contained in:
11
src/Parser/Lexer/NumericalLexers.hpp
Normal file
11
src/Parser/Lexer/NumericalLexers.hpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#ifndef ELOHIMSCRIPT_NUMERICALLEXERS_HPP
|
||||
#define ELOHIMSCRIPT_NUMERICALLEXERS_HPP
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
uint8_t LexDecimalValue(char8_t c);
|
||||
uint8_t LexHexadecimalValue(char8_t c);
|
||||
uint8_t LexOctalValue(char8_t c);
|
||||
uint8_t LexBinaryValue(char8_t c);
|
||||
|
||||
#endif // ELOHIMSCRIPT_NUMERICALLEXERS_HPP
|
||||
Reference in New Issue
Block a user