We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7b436f commit 62ffc40Copy full SHA for 62ffc40
src/transpiler/parser/scheme-parser.ts
@@ -277,7 +277,10 @@ export class SchemeParser implements Parser {
277
default:
278
// if in a quoting context, or when dealing with the macro chapter,
279
// any keyword is instead treated as a symbol
280
- if (this.quoteMode !== QuoteMode.NONE || this.chapter >= MACRO_CHAPTER) {
+ if (
281
+ this.quoteMode !== QuoteMode.NONE ||
282
+ this.chapter >= MACRO_CHAPTER
283
+ ) {
284
return new Atomic.Symbol(this.toLocation(token), token.lexeme);
285
}
286
throw new ParserError.UnexpectedFormError(
0 commit comments