加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Scanner.h 978 Bytes
一键复制 编辑 原始数据 按行查看 历史
//
// Created by Gorun on 2022/5/2.
//
#ifndef LOXPP_SCANNER_H
#define LOXPP_SCANNER_H
#include "Token/Token.h"
#include <cctype>
#include <vector>
#include <string>
#include <map>
class Scanner {
public:
explicit Scanner(const std::string& source);
void setSource(const std::string& s);
std::string getSource() const;
std::vector<Token> scanTokens();
private:
void scanToken();
void identifier();
void number();
void string();
bool match(char expected);
char peek();
char peekNext();
static bool isAlpha(char ch);
static bool isDigit(char ch);
static bool isAlphaNumberic(char ch);
bool isAtEnd();
char advance();
void addToken(TokenType type);
void addToken(TokenType type, const Object* literal);
std::string source;
std::vector<Token> tokens;
std::map<std::string, TokenType> keywords;
int start=0;
int current=0;
int line=1;
int column=1;
};
#endif //LOXPP_SCANNER_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化