14 lines
373 B
C++
14 lines
373 B
C++
// Copyright (c) 2020-now by the Zeek Project. See LICENSE for details.
|
|
|
|
#pragma once
|
|
|
|
#include <hilti/ast/forward.h>
|
|
#include <hilti/compiler/unit.h>
|
|
|
|
namespace hilti::detail::scope_builder {
|
|
|
|
/** Implements the corresponding functionality for the default HILTI compiler plugin. */
|
|
void build(Builder* builder, ASTRoot* root);
|
|
|
|
} // namespace hilti::detail::scope_builder
|