Blang/src/lib/src/Statement/CallExpr.h

14 lines
149 B
C++

#ifndef CALLEXPR_H
#define CALLEXPR_H
#include "Expr.hpp"
/*!Represents a function call */
class CallExpr: public Expr
{
};
#endif //CALLEXPR_H