Blang/src/lib/src/Statement/NumberLiteralExpr.cpp

14 lines
178 B
C++
Raw Normal View History

2016-11-28 07:29:13 +01:00
#include "NumberLiteralExpr.h"
NumberLiteralExpr::NumberLiteralExpr(SourceLocation l):
_l(l)
{
}
SourceLocation NumberLiteralExpr::getLocation() const
{
return _l;
}