skia2/forth/ForthParser.h
reed@google.com 1d5aaa8ef6 fix memory leaks
git-svn-id: http://skia.googlecode.com/svn/trunk@1448 2bbb7eff-a529-9590-31e7-b0007b416f81
2011-05-31 15:35:54 +00:00

40 lines
840 B
C++

#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);
SkDEBUGCODE(bool isNewWord = )fDict.set(name, len, word);
SkASSERT(isNewWord);
}
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