summaryrefslogtreecommitdiff
path: root/src/expression.h
blob: 36297042e79dced311a77f8b24bf18bac5b60200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef EXPRESSION_H_
#define EXPRESSION_H_

#include <string>
#include <vector>
#include "value.h"
#include "typedefs.h"

class Expression
{
public:
	std::vector<Expression*> children;

	const Value const_value;
	std::string var_name;

	std::string call_funcname;
	AssignmentList call_arguments;

	// Boolean: ! && ||
	// Operators: * / % + -
	// Relations: < <= == != >= >
	// Vector element: []
	// Condition operator: ?:
	// Invert (prefix '-'): I
	// Constant value: C
	// Create Range: R
	// Create Vector: V
	// Create Matrix: M
	// Lookup Variable: L
	// Lookup member per name: N
	// Function call: F
  std::string type;

	Expression();
	Expression(const Value &val);
	Expression(const std::string &type, Expression *left, Expression *right);
	Expression(const std::string &type, Expression *expr);
	~Expression();

	Value evaluate(const class Context *context) const;
	std::string toString() const;

	mutable int recursioncount;
};

std::ostream &operator<<(std::ostream &stream, const Expression &expr);

#endif
contact: Jan Huwald // Impressum