From 908574c579487e33ef7230a8d037e3ad25c778e8 Mon Sep 17 00:00:00 2001 From: Kyriel Abad Date: Mon, 4 Nov 2024 21:45:50 +0800 Subject: [PATCH] rename CSEP machine to CSET machine --- src/transpiler/index.ts | 2 +- src/transpiler/parser/scheme-parser.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transpiler/index.ts b/src/transpiler/index.ts index bdefd1e..c036668 100644 --- a/src/transpiler/index.ts +++ b/src/transpiler/index.ts @@ -79,7 +79,7 @@ export function schemeParse( finalAST = redefinedAST; } else { - // Then we prepare the AST for evaluation within the CSEP machine. + // Then we prepare the AST for evaluation within the CSET machine. // Take the imports from the AST const macroASTImports: Expression[] = firstAST.filter( e => e instanceof Atomic.Import diff --git a/src/transpiler/parser/scheme-parser.ts b/src/transpiler/parser/scheme-parser.ts index 75ffa16..f8f7afd 100644 --- a/src/transpiler/parser/scheme-parser.ts +++ b/src/transpiler/parser/scheme-parser.ts @@ -434,7 +434,7 @@ export class SchemeParser implements Parser { if (group.length() === 0) { if (this.chapter >= MACRO_CHAPTER) { // disable any verification for the empty group - // the CSEP machine will verify its validity + // the CSET machine will verify its validity return new Atomic.Nil(group.location); } throw new ParserError.ExpectedFormError(