Blang/src/lib/Statement/BreakStatement.cpp

9 lines
198 B
C++

#include "Statement/BreakStatement.hpp"
SourceLocation BreakStatement::getBreakLocation() const{
return _BreakLoc;
}
void BreakStatement::setBreakLocation(SourceLocation loc){
_BreakLoc = loc;
}