Node.js  v8.x
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine
string_search.cc
Go to the documentation of this file.
1 #include "string_search.h"
2 
3 namespace node {
4 namespace stringsearch {
5 
6 int StringSearchBase::kBadCharShiftTable[kUC16AlphabetSize];
7 int StringSearchBase::kGoodSuffixShiftTable[kBMMaxShift + 1];
8 int StringSearchBase::kSuffixTable[kBMMaxShift + 1];
9 
10 } // namespace stringsearch
11 } // namespace node