Blang/src/include/Statement/ReturnStatement.hpp

16 lines
259 B
C++

#ifndef RETURNSTATEMENT_HPP
#define RETURNSTATEMENT_HPP
#include "Statement.hpp"
#include "SourceLocation.hpp"
class ReturnStatement: public Statement{
public:
SourceLocation getReturnLocation() const;
void setReturnLocation(SourceLocation);
};
#endif