File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ data representation implied by the fact that a value is an atom (e.g. the atom
5151` 2 ` may be an integer in memory).
5252
5353Bare words not containing any
54- [ reserved character sequences] ( ./src/language/parsing/atom.ts#L33-L57 ) are
54+ [ reserved character sequences] ( ./src/language/parsing/atom.ts#L33-L55 ) are
5555atoms:
5656
5757```
Original file line number Diff line number Diff line change @@ -44,15 +44,13 @@ const atomComponentsRequiringQuotation = [
4444 singleLineCommentDelimiter ,
4545 whitespace ,
4646
47+ // Reserved to allow symbols like `=>` to not be conflated with atoms:
48+ literal ( '=' ) ,
49+
4750 // Reserved for future use:
4851 literal ( '[' ) ,
4952 literal ( ']' ) ,
50- literal ( '<' ) ,
51- literal ( '>' ) ,
5253 literal ( '#' ) ,
53- literal ( '&' ) ,
54- literal ( '|' ) ,
55- literal ( '=' ) ,
5654 literal ( ';' ) ,
5755] as const
5856
You can’t perform that action at this time.
0 commit comments