2007-10-22から1日間の記事一覧

ひとまずコンセプトをコードに落とす

minipythonの手書きLexerの実装案 class reserved_word { private: string word; public: reserved_word(string word); bool check_char(char intput); }; class word_checker { private: list<reserved_word> words; public: void add_word(string word); void check_char(</reserved_word>…

scheme-complete.elがすごい

scheme-complete.el is a single function that can be used with any Emacs scheme mode. It provides real-time, lexical-scope aware type inferencing tab-completion for any R5RS scheme, with extensibility for implementation-specific features (c…

ひとまず

節子、それ字句解析やない、構文解析や。 ネタバレになるので読みたくない人はすっ飛ばしてください。mini-PythonはLL(1)文法になるように設計されているので、基本的に次の文字を見ればその字句がわかると言うようになっています。mini-Pythonインタープリ…