Piethon
1.0
A Python-like interpreter using flex and bison.
|
#include <expression.h>
Public Member Functions | |
Addition (Expression *e1, Expression *e2) | |
virtual Number | eval (const SymbolTable &, const FunctionTable &) const |
Public Member Functions inherited from BinaryExpression | |
~BinaryExpression () | |
Public Member Functions inherited from Expression | |
virtual | ~Expression () |
Additional Inherited Members | |
Protected Member Functions inherited from BinaryExpression | |
BinaryExpression (Expression *e1, Expression *e2) | |
Protected Member Functions inherited from Expression | |
Expression () | |
Protected Attributes inherited from BinaryExpression | |
Expression * | op1 |
Expression * | op2 |
Definition at line 87 of file expression.h.
|
inline |
Definition at line 89 of file expression.h.
|
virtual |
Implements BinaryExpression.
Definition at line 35 of file expression.cpp.