32 #ifndef _QORE_EXPRESSIONSTATEMENT_H
34 #define _QORE_EXPRESSIONSTATEMENT_H
36 #include "qore/intern/AbstractStatement.h"
38 class ExpressionStatement :
public AbstractStatement {
40 DLLLOCAL ExpressionStatement(
const QoreProgramLocation* loc,
QoreValue v);
42 DLLLOCAL
virtual ~ExpressionStatement();
44 DLLLOCAL
virtual bool isParseDeclaration()
const {
45 return is_parse_declaration;
48 DLLLOCAL
virtual bool isDeclaration()
const {
49 return is_declaration;
55 bool is_parse_declaration;
59 DLLLOCAL
virtual int parseInitImpl(QoreParseContext& parse_context);
container for holding Qore-language exception information and also for registering a "thread_exit" ca...
Definition: ExceptionSink.h:48
The main value class in Qore, designed to be passed by value.
Definition: QoreValue.h:275