This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/mecab/src/tokenizer.cpp b/mecab/src/tokenizer.cpp | |
index ae5a9ba..9665bea 100644 | |
--- a/mecab/src/tokenizer.cpp | |
+++ b/mecab/src/tokenizer.cpp | |
@@ -37,39 +37,6 @@ void inline read_node_info(const Dictionary &dic, | |
} | |
} // namespace | |
-template class Tokenizer<Node, Path>; | |
-template class Tokenizer<LearnerNode, LearnerPath>; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.script._ | |
class foo(s: String) | |
// call Class.forName not in JavaScript. | |
// calling Class.forName in JavaScript does not work. | |
object ClassForName { | |
def apply(className: String) = Class.forName(className) | |
} |