Files
carbon-lang/explorer/syntax/prelude.h
T
Jon Meow 20728dbd3a CARBON_ header guards (#1261)
This modifies scripts/check_header_guards.py to add the CARBON_ prefix; everything else is pre-commit.
2022-05-12 17:25:43 -07:00

23 lines
691 B
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef CARBON_EXPLORER_SYNTAX_PRELUDE_H_
#define CARBON_EXPLORER_SYNTAX_PRELUDE_H_
#include <string_view>
#include "explorer/ast/declaration.h"
#include "explorer/common/arena.h"
#include "explorer/common/nonnull.h"
namespace Carbon {
// Adds the Carbon prelude to `declarations`.
void AddPrelude(std::string_view prelude_file_name, Nonnull<Arena*> arena,
std::vector<Nonnull<Declaration*>>* declarations);
} // namespace Carbon
#endif // CARBON_EXPLORER_SYNTAX_PRELUDE_H_