Blang/src/include/Statement/BreakStatement.hpp

17 lines
289 B
C++

#ifndef BREAKSTATEMENT_HPP
#define BREAKSTATEMENT_HPP
#include "Statement.hpp"
#include "SourceLocation.hpp"
class BreakStatement: public Statement{
public:
SourceLocation getBreakLocation() const;
void setBreakLocation(SourceLocation);
private:
SourceLocation _BreakLoc;
};
#endif