#include "Statement/LabelStatement.hpp" LabelStatement::LabelStatement(SourceLocation ll, LabelDecl* decl): _decl(decl), _labelLoc(ll) { } SourceLocation LabelStatement::getLabelLocation() const { return _labelLoc; } void LabelStatement::setLabelLocation(SourceLocation loc) { _labelLoc = loc; }