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"
|
2017-11-13 02:16:17 +01:00
|
|
|
|
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)) {}
|
2017-11-13 02:16:17 +01:00
|
|
|
|
2024-06-25 18:59:15 +02:00
|
|
|
blitz::ast::arithmetic_expression::~arithmetic_expression() {}
|