/* -*- C++ -*- * Serene Programming Language * * Copyright (c) 2019-2021 Sameer Rahmani * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef EXPRS_DEF_H #define EXPRS_DEF_H #include "serene/context.h" #include "serene/errors/error.h" #include "serene/exprs/expression.h" #include #include #include #include namespace serene { namespace exprs { class List; /// This data structure represents the operation to define a new binding via /// the `def` special form. class Def : public Expression { public: std::string binding; Node value; Def(reader::LocationRange &loc, llvm::StringRef binding, Node &v) : Expression(loc), binding(binding), value(v){}; Def(Def &d) = delete; ExprType getType() const override; std::string toString() const override; MaybeNode analyze(SereneContext &) override; void generateIR(serene::Namespace &, mlir::ModuleOp &) override; static bool classof(const Expression *e); /// Create a Def node out a list. The list should contain the /// correct `def` form like `(def blah value)`. This function /// is supposed to be used in the semantic analysis phase. /// /// \param ctx The semantic analysis context object. /// \param list the list containing the `def` form static MaybeNode make(SereneContext &ctx, List *list); ~Def() = default; }; } // namespace exprs } // namespace serene #endif