예제 #1
0
파일: ocaml.c 프로젝트: b4n/fishman-ctags
static void ocamlInitialize (const langType language)
{
	Lang_Ocaml = language;

	initOperatorTable ();
	initKeywordHash ();
}
예제 #2
0
파일: interpreter.cpp 프로젝트: mvila/liu
    void Interpreter::initRoot() {
        initOperatorTable();
        _lexer = LIU_LEXER();
        addChild("lexer", _lexer);
        _parser = LIU_PARSER();
        addChild("parser", _parser);
        _sourceCodes = LIU_SOURCE_CODE_DICTIONARY();
        addChild("source_codes", _sourceCodes);
//        TestSuite::root();
        setTestSuite(TestSuite::make());
    }