From 62ffc4014cfca10299f10fc6ec21fff6f853054c Mon Sep 17 00:00:00 2001 From: s-kybound Date: Sun, 3 Nov 2024 20:37:28 +0800 Subject: [PATCH] styling --- src/transpiler/parser/scheme-parser.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/transpiler/parser/scheme-parser.ts b/src/transpiler/parser/scheme-parser.ts index b65d2f6..75ffa16 100644 --- a/src/transpiler/parser/scheme-parser.ts +++ b/src/transpiler/parser/scheme-parser.ts @@ -277,7 +277,10 @@ export class SchemeParser implements Parser { default: // if in a quoting context, or when dealing with the macro chapter, // any keyword is instead treated as a symbol - if (this.quoteMode !== QuoteMode.NONE || this.chapter >= MACRO_CHAPTER) { + if ( + this.quoteMode !== QuoteMode.NONE || + this.chapter >= MACRO_CHAPTER + ) { return new Atomic.Symbol(this.toLocation(token), token.lexeme); } throw new ParserError.UnexpectedFormError(