mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 16:18:19 +00:00
track the use of conditionals in functions and files
This commit is contained in:
parent
f865897cac
commit
e73351a6e1
5 changed files with 103 additions and 48 deletions
|
@ -22,6 +22,10 @@ public:
|
|||
// True if we observe that there is a branch out of the statement
|
||||
// to just beyond its extent, such as due to a "break".
|
||||
bool contains_branch_beyond = false;
|
||||
|
||||
// Whether this statement is free of the possible influence
|
||||
// of conditional code.
|
||||
bool is_free_of_conditionals = true;
|
||||
};
|
||||
|
||||
} // namespace zeek::detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue