/* * Copyright (C) 2023 Riyyi * * SPDX-License-Identifier: MIT */ #pragma once #include // std::shared_ptr namespace blaze { class ASTNode; typedef std::shared_ptr ASTNodePtr; class Environment; typedef std::shared_ptr EnvironmentPtr; } // namespace blaze