Files
BlitzLLVM/code_compiler/source/ast/arithmetic.cpp
T

10 lines
468 B
C++
Raw Normal View History

2024-06-25 18:59:15 +02:00
/// AUTOGENERATED COPYRIGHT HEADER START
// Copyright (C) 2017-2024 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
// AUTOGENERATED COPYRIGHT HEADER END
2024-06-06 13:37:13 +02:00
#include "arithmetic.hpp"
2024-06-25 18:59:15 +02:00
blitz::ast::arithmetic_expression::arithmetic_expression(expression_operator op, std::unique_ptr<expression> left, std::unique_ptr<expression> right)
2024-06-06 13:37:13 +02:00
: m_operator(op), m_left(std::move(left)), m_right(std::move(right)) {}
2024-06-25 18:59:15 +02:00
blitz::ast::arithmetic_expression::~arithmetic_expression() {}