32 #ifndef _QORE_EXPRESSIONSTATEMENT_H 34 #define _QORE_EXPRESSIONSTATEMENT_H 36 #include "qore/intern/AbstractStatement.h" 38 class ExpressionStatement :
public AbstractStatement {
42 bool is_parse_declaration;
45 DLLLOCAL
virtual int parseInitImpl(LocalVar* oflag,
int pflag = 0);
48 DLLLOCAL ExpressionStatement(
const QoreProgramLocation* loc,
QoreValue v);
50 DLLLOCAL
virtual ~ExpressionStatement();
52 DLLLOCAL
virtual bool isParseDeclaration()
const {
53 return is_parse_declaration;
56 DLLLOCAL
virtual bool isDeclaration()
const {
57 return is_declaration;
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:262
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:46