# NovaCompiler **Repository Path**: peter_parker/interpreter ## Basic Information - **Project Name**: NovaCompiler - **Description**: Nova 语言编译器 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-08-19 - **Last Updated**: 2024-12-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: Compiler, Java ## README # Nova 编译器 Nova 是一门类 C 语言。 ## 词法分析 用确定有限状态自动机 ( Deterministic Finite Automation, DFA ) 实现。 ## 语法分析 用递归下降分析法 ( Recursive Descent Parsing ) 实现。 ## 测试程序构建 执行以下命令构建测试程序: ```shell cd src/test/code/ make -r ```