Skip to content

Commit 62ffc40

Browse files
committed
styling
1 parent a7b436f commit 62ffc40

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/transpiler/parser/scheme-parser.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,10 @@ export class SchemeParser implements Parser {
277277
default:
278278
// if in a quoting context, or when dealing with the macro chapter,
279279
// any keyword is instead treated as a symbol
280-
if (this.quoteMode !== QuoteMode.NONE || this.chapter >= MACRO_CHAPTER) {
280+
if (
281+
this.quoteMode !== QuoteMode.NONE ||
282+
this.chapter >= MACRO_CHAPTER
283+
) {
281284
return new Atomic.Symbol(this.toLocation(token), token.lexeme);
282285
}
283286
throw new ParserError.UnexpectedFormError(

0 commit comments

Comments
 (0)