35 explicit SO(
bool p_exec =
false ) :
exec_(p_exec) {}
39 virtual ~SO() =
default;
59 [[nodiscard]]
virtual SO *
dup()
const = 0;
62 [[nodiscard]]
virtual SO *
clone()
const {
84 virtual std::string
type()
const = 0;
96 virtual bool equal(
const SO * )
const = 0;
102 virtual bool gt(
const SO * )
const {
110 virtual bool ge(
const SO * )
const {
130 return "--nostringval--";
Counter base class.
Definition: counter.h:23
Design by contract interface class.
Definition: dbc.h:25
Semantic Object.
Definition: so.h:30
virtual bool equal(const SO *) const =0
Equality.
void setExec(bool p_exec)
Setter for exec_.
Definition: so.h:48
virtual std::string type() const =0
Returns a type name.
virtual SO * dup() const =0
Creates a new instance as copy following the red book definition.
SO(bool p_exec=false)
Ctor.
Definition: so.h:35
virtual ~SO()=default
Virtual dtor.
virtual std::string opequalequal() const
For operators '==' and 'pstack'.
Definition: so.h:71
virtual std::string opequal() const =0
For operators '=', 'cvs' and 'stack'.
virtual bool ge(const SO *) const
Greater or equal.
Definition: so.h:110
virtual OTCode ot() const =0
Returns an OTCode.
virtual bool gt(const SO *) const
Greater than.
Definition: so.h:102
bool getExec() const
Getter for exec_.
Definition: so.h:43
virtual SO * clone() const
Creates a new instance as copy with deep cloning.
Definition: so.h:62
bool exec_
All SOs have executive vs literal attribut.
Definition: so.h:31
virtual size_t getSize() const
Getter for the number of characters or number of objects.
Definition: so.h:53
Compound Semantic Object.
Definition: so.h:122
std::string opequal() const override
For operators '=', 'cvs' and 'stack'.
Definition: so.h:129
Helpers for design by contract idioms.
void opErrExit(OpError p_err, const std::string &p_details, const std::source_location p_location)
Operator error message to interpreter cout_ and exit(1).
Definition: error.cpp:27
Definitions and functions for error handling.
Miscellaneous definitions and functions.
char OTCode
OTCode - the Object Type Code.
Definition: helper.h:43