2 Star 6 Fork 0

秩启/Lox++

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
LoxInstance.cpp 819 Bytes
一键复制 编辑 原始数据 按行查看 历史
秩启 提交于 2022-05-07 13:32 . Support class further
//
// Created by Gorun on 2022/5/6.
//
#include "LoxInstance.h"
#include <utility>
#include "LoxClass.h"
#include "LoxFunction.h"
#include "Token.h"
#include "RuntimeError.h"
using namespace std;
LoxInstance::LoxInstance(shared_ptr<LoxClass> klass)
: klass{move(klass)}
{}
string LoxInstance::toString() {
return klass->name + " instance";
}
any LoxInstance::get(const Token& name) {
auto element = fields.find(name.lexeme);
if (element!=fields.end()) {
return fields[name.lexeme];
}
shared_ptr<LoxFunction> method = klass->findMethod(name.lexeme);
if (method!=nullptr) return method->bind(shared_from_this());
throw RuntimeError(name, "Undefined property '"+name.lexeme+"'.");
}
void LoxInstance::set(const Token &name, any value) {
fields[name.lexeme]=move(value);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/rankrev/loxpp.git
git@gitee.com:rankrev/loxpp.git
rankrev
loxpp
Lox++
master

搜索帮助