本文整理汇总了C++中Name::valid方法的典型用法代码示例。如果您正苦于以下问题:C++ Name::valid方法的具体用法?C++ Name::valid怎么用?C++ Name::valid使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Name
的用法示例。
在下文中一共展示了Name::valid方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: call_frame
Frame* Closure::call_frame(List* args)
{
// Check parameter count.
const std::vector<Name>& pre = code->get_pre_params();
Name sink = code->get_sink_param();
const std::vector<Name>& post = code->get_post_params();
if (sink.valid())
{
if (args->get_size() < (int)(pre.size() + post.size()))
throw new Exception(Name("bad_parameter_count"), *args);
}
else
{
if (args->get_size() != (int)(pre.size() + post.size()))
throw new Exception(Name("bad_parameter_count"), *args);
}
// Make frame and set local variables.
Scope* sc = new Scope(scope.get());
int i = 0;
for (int j = 0; j < (int)pre.size(); j++)
sc->set_local(pre[j], args->get(i++));
if (sink.valid())
{
List* l = new List();
while (i < args->get_size() - (int)post.size())
l->append(args->get(i++));
sc->set_local(sink, *l);
dec_ref(l);
}
for (int j = 0; j < (int)post.size(); j++)
sc->set_local(post[j], args->get(i++));
return new Frame(sc, 0, code.get());
}