
language
ReZerou
这个作者很懒,什么都没留下…
展开
-
[Initial] Build: PL By: JS
Origin: http://lisperator.net/pltut/This is a tutorial on how to implement a programming language.If you ever wrote an interpreter or a compiler, then there is probably nothing new for you here.But, if转载 2017-12-03 18:30:31 · 275 阅读 · 0 评论 -
[Parser] Build: PL By: JS
origin: http://lisperator.net/pltut/ InputStream TokenStream Parse Summaryvar ast = parse(TokenStream(InputStream(code)));Writing a parser is, depending on the language, a moderately complex task. In e转载 2017-12-03 18:31:39 · 447 阅读 · 0 评论 -
LL(1) Parser
LLone github: https://github.com/ReZeroS/LLone A LL parser is a top-down parser for a subset of context-free languages. It parses the input from Left to right, performing Leftmost derivation of the ...原创 2018-05-08 22:08:54 · 919 阅读 · 0 评论