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

14 lines
178 B
C++

#include "NumberLiteralExpr.h"
NumberLiteralExpr::NumberLiteralExpr(SourceLocation l):
_l(l)
{
}
SourceLocation NumberLiteralExpr::getLocation() const
{
return _l;
}