#include "ReturnStatement.h" ReturnStatement::ReturnStatement(SourceLocation l): _returnLocation(l) { } SourceLocation ReturnStatement::getReturnLocation() const { return _returnLocation; } void ReturnStatement::setReturnLocation(SourceLocation l) { _returnLocation = l; }