Blang/src/include/Statement/CallExpr.h

12 lines
128 B
C++

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