mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
23 lines
654 B
C++
23 lines
654 B
C++
// See the file "COPYING" in the main distribution directory for copyright.
|
|
#pragma once
|
|
|
|
namespace zeek::detail {
|
|
|
|
class Stmt;
|
|
|
|
/**
|
|
* Run extra validations on the parsed AST after everything is initialized
|
|
* and report any errors via deprecation warnings or zeek::reporter->Error().
|
|
*/
|
|
void script_validation();
|
|
|
|
/**
|
|
* Returns true if the given script statement (body) is valid. The
|
|
* second argument indicates whether the statement is the body of a hook.
|
|
*
|
|
* Unlike script_validation(), does not report any errors, just returns
|
|
* whether they are present.
|
|
*/
|
|
bool script_is_valid(const Stmt* s, bool is_in_hook);
|
|
|
|
} // namespace zeek::detail
|