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 a777875 commit 4cb4bc2Copy full SHA for 4cb4bc2
src/language/parsing/atom.ts
@@ -11,6 +11,7 @@ import {
11
zeroOrMore,
12
} from '@matt.kantor/parsing'
13
import {
14
+ arrow,
15
atSign,
16
backslash,
17
closingBlockCommentDelimiter,
@@ -32,6 +33,7 @@ import { whitespace } from './trivia.js'
32
33
export type Atom = string
34
35
const atomComponentsRequiringQuotation = [
36
37
38
39
@@ -46,10 +48,8 @@ const atomComponentsRequiringQuotation = [
46
48
singleLineCommentDelimiter,
47
49
whitespace,
50
- // Reserved to allow symbols like `=>` to not be conflated with atoms:
- literal('='),
51
-
52
// Reserved for future use:
+ literal('='),
53
literal('['),
54
literal(']'),
55
literal('#'),
0 commit comments