A basic C language compiler from scratch.
-
Updated
May 9, 2019 - C
A grammar describes the syntax of a programming language, and might be defined in Backus-Naur form (BNF). A lexer performs lexical analysis, turning text into tokens. A parser takes tokens and builds a data structure like an abstract syntax tree (AST). The parser is concerned with context: does the sequence of tokens fit the grammar? A compiler is a combined lexer and parser, built for a specific grammar.
A basic C language compiler from scratch.
Building a simple programming language based on arithmetic expressions using a top-down recursive descent parser written in Python and C.
⚡C-based lexical analyzer using Backus-Naur form. Matches lexemes to tokens, handles delimiters, and identifies unknown lexemes from a source file.
(beta version) Something like extended Backus-Naur form in C++ & the sample json parser using cebnf.