blob: 65a39a1a0fa25a1b1eef1c23296a51e2a95ddc75 [file] [log] [blame]
#ifndef ForthParser_DEFINED
#define ForthParser_DEFINED
#include "SkTDict.h"
//#include "SkString.h"
class ForthWord;
class FCode;
class ForthParser {
public:
ForthParser();
~ForthParser();
const char* parse(const char text[], FCode*);
void addWord(const char name[], ForthWord* word) {
this->add(name, strlen(name), word);
}
void add(const char name[], size_t len, ForthWord* word) {
// SkString str(name, len);
// SkDebugf("add %s %p\n", str.c_str(), word);
(void)fDict.set(name, len, word);
}
ForthWord* find(const char name[], size_t len) const {
ForthWord* word;
return fDict.find(name, len, &word) ? word : NULL;
}
private:
void addStdWords();
SkTDict<ForthWord*> fDict;
};
#endif