本文整理汇总了C++中StaticScope::top_level_p方法的典型用法代码示例。如果您正苦于以下问题:C++ StaticScope::top_level_p方法的具体用法?C++ StaticScope::top_level_p怎么用?C++ StaticScope::top_level_p使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StaticScope
的用法示例。
在下文中一共展示了StaticScope::top_level_p方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: const_get
Object* const_get(STATE, CallFrame* call_frame, Symbol* name, bool* found) {
StaticScope *cur;
Object* result;
*found = false;
call_frame = call_frame->top_ruby_frame();
// Ok, this has to be explained or it will be considered black magic.
// The scope chain always ends with an entry at the top that contains
// a parent of nil, and a module of Object. This entry is put in
// regardless of lexical scoping, it's the default scope.
//
// When looking up a constant, we don't want to consider the default
// scope (ie, Object) initially because we need to lookup up
// the superclass chain first, because falling back on the default.
//
// The rub comes from the fact that if a user explicitly opens up
// Object in their code, we DO consider it. Like:
//
// class Idiot
// A = 2
// end
//
// class ::Object
// A = 1
// class Stupid < Idiot
// def foo
// p A
// end
// end
// end
//
// In this code, when A is looked up, Object must be considering during
// the scope walk, NOT during the superclass walk.
//
// So, in this case, foo would print "1", not "2".
//
cur = call_frame->static_scope();
while(!cur->nil_p()) {
// Detect the toplevel scope (the default) and get outta dodge.
if(cur->top_level_p(state)) break;
result = cur->module()->get_const(state, name, found);
if(*found) return result;
cur = cur->parent();
}
// Now look up the superclass chain.
cur = call_frame->static_scope();
if(!cur->nil_p()) {
Module* mod = cur->module();
while(!mod->nil_p()) {
result = mod->get_const(state, name, found);
if(*found) return result;
mod = mod->superclass();
}
}
// Lastly, check Object specifically
result = G(object)->get_const(state, name, found, true);
if(*found) return result;
return Qnil;
}