Blang/src/lib/src/Statement/BreakStatement.cpp

17 lines
267 B
C++
Raw Normal View History

2016-11-28 07:29:13 +01:00
#include "BreakStatement.h"
BreakStatement::BreakStatement(SourceLocation l):
_BreakLoc(l)
{
}
SourceLocation BreakStatement::getBreakLocation() const
{
return _BreakLoc;
}
void BreakStatement::setBreakLocation(SourceLocation loc)
{
_BreakLoc = loc;
}