aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/src/initializer.cpp
blob: 580d81f49c9da34a5ee0d821475d18db802bfb98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#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()
{}