aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/initializer.cpp
blob: 61a0413378a251759eaf87f3a0f92960bcaea690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "ast.hpp"


// Initializer definition

Initializer::Initializer() {}

void Initializer::print() const {}

void Initializer::printxml() const {}

void Initializer::printasm() const {}


// Integer definition

Integer::Integer() : Initializer() {}


// String Literal definition

StringLiteral::StringLiteral() : Initializer() {}