Blang/src/lib/src/Statement/NumberLiteralExpr.h

18 lines
293 B
C++

#ifndef BLANG_NUMBERLITERALEXPR_H
#define BLANG_NUMBERLITERALEXPR_H
#include "Expr.hpp"
class NumberLiteralExpr: public Expr
{
public:
NumberLiteralExpr(SourceLocation l);
SourceLocation getLocation() const;
protected:
SourceLocation _l;
};
#endif //BLANG_NUMBERLITERALEXPR_H