本文整理汇总了C++中symbol_table::open_scope方法的典型用法代码示例。如果您正苦于以下问题:C++ symbol_table::open_scope方法的具体用法?C++ symbol_table::open_scope怎么用?C++ symbol_table::open_scope使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类symbol_table
的用法示例。
在下文中一共展示了symbol_table::open_scope方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: is_valid
bool ast_fun_def::is_valid(symbol_table& sym)
{
bool res = true;
if (sym.get_fun_def(_id) != nullptr)
{
cerr << MYLANGA_PARSE_ERROR(_ln) << " | " << \
"La función \'" << *_id << "\' ya está definida." << endl;
res = false;
}
if (has_repeated_elements(_ids))
{
cerr << MYLANGA_PARSE_ERROR(_ln) << " | " << \
"La función \'" << *_id << "\' contiene parámetros repetidos en su definición." << endl;
res = false;
}
// para soportar recursión
sym.define_fun(shared_from_this());
sym.open_scope();
for (auto _id : *_ids)
sym.declare_var(_id);
res = _bl->is_valid(sym) and res;
sym.close_scope();
sym.undefine_fun(shared_from_this());
return res;
}
示例2: eval
fp_t ast_fun_call_expr::eval(symbol_table& sym)
{
list<fp_t> args;
for (auto _ex : *_exs)
args.push_back(_ex->eval(sym));
sym.open_scope();
ptr<ast_fun_def> _fd = sym.get_fun_def(_id);
auto arg_it = args.begin();
for (auto _param_id : *(_fd->_ids))
sym.set_var(_param_id, *arg_it++);
maybe_fp_t ret = _fd->_bl->exec(sym);
sym.close_scope();
if (not ret.is_valid)
{
// runtime error
cerr << MYLANGA_RUNTIME_ERROR << " | " << \
"La función \'" << *_id << "\' se ejecutó sin retornar un valor." << endl;
MYLANGA_END_ABRUPTLY();
}
return ret.value;
}
示例3: plot
void ast_plot_cmd::plot(symbol_table& sym)
{
sym.open_scope();
fp_t range_from = _ex1->eval(sym),
range_step = _ex2->eval(sym),
range_to = _ex3->eval(sym);
for (fp_t x = range_from; x <= range_to; x += range_step)
{
sym.set_var(_id, x);
fp_t x_value = _ex_x->eval(sym),
y_value = _ex_y->eval(sym);
cout << x_value << " " << y_value << endl;
}
sym.close_scope();
}