Implements expression parsing

This commit is contained in:
2019-05-20 17:45:03 +02:00
parent 7edd51d5e3
commit 37e770f1cb
10 changed files with 519 additions and 4 deletions

View File

@@ -24,6 +24,10 @@ public:
unsigned int GetEndPosition(){
return Position + Length - 1;
}
unsigned int GetLength(){
return Length;
}
};
class SimpleToken : public IToken{