more unittests (already found/fixed some bugs)
git-svn-id: http://skia.googlecode.com/svn/trunk@348 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/forth/ForthParser.h b/forth/ForthParser.h
index 9c939f8..65a39a1 100644
--- a/forth/ForthParser.h
+++ b/forth/ForthParser.h
@@ -2,6 +2,7 @@
#define ForthParser_DEFINED
#include "SkTDict.h"
+//#include "SkString.h"
class ForthWord;
class FCode;
@@ -18,6 +19,8 @@
}
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);
}