mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
Move Frame and Scope to zeek::detail namespace
This commit is contained in:
parent
64332ca22c
commit
937a462e70
50 changed files with 306 additions and 257 deletions
|
@ -57,7 +57,7 @@ static void lookup_global_symbols_regex(const string& orig_regex, vector<zeek::d
|
|||
return;
|
||||
}
|
||||
|
||||
Scope* global = global_scope();
|
||||
zeek::detail::Scope* global = zeek::detail::global_scope();
|
||||
const auto& syms = global->Vars();
|
||||
|
||||
zeek::detail::ID* nextid;
|
||||
|
@ -214,7 +214,7 @@ static int dbg_backtrace_internal(int start, int end)
|
|||
|
||||
for ( int i = start; i >= end; --i )
|
||||
{
|
||||
const Frame* f = g_frame_stack[i];
|
||||
const zeek::detail::Frame* f = g_frame_stack[i];
|
||||
const zeek::detail::Stmt* stmt = f ? f->GetNextStmt() : nullptr;
|
||||
|
||||
string context = get_context_description(stmt, f);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue