File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,19 @@ For example:
8787NonBooleanName : Name but not ` true ` or ` false `
8888
8989
90+ ## Source Text
91+
92+ GraphQL documents are expressed as a sequence of
93+ [ Unicode] ( http://unicode.org/standard/standard.html ) code points.
94+
95+ However, with few exceptions, most of GraphQL is expressed only in the original
96+ ASCII range so as to be as widely compatible with as many existing tools,
97+ languages, and serialization formats as possible. Other than the ignored Unicode
98+ code points, Non-ASCII Unicode code points are only found within {StringValue}.
99+
100+ SourceCharacter : "Any Unicode code point"
101+
102+
90103## Ignored Source
91104
92105Before and after every lexical token may be any amount of ignored source
@@ -128,7 +141,7 @@ LineTerminator :
128141Comment :
129142 - ` # ` CommentChar*
130143
131- CommentChar : "Any character" but not LineTerminator
144+ CommentChar : SourceCharacter but not LineTerminator
132145
133146
134147## Tokens
@@ -188,7 +201,7 @@ StringValue :
188201 - ` " ` StringCharacter+ ` " `
189202
190203StringCharacter :
191- - "Any character" but not ` " ` or \ or LineTerminator
204+ - SourceCharacter but not ` " ` or \ or LineTerminator
192205 - \ EscapedUnicode
193206 - \ EscapedCharacter
194207
You can’t perform that action at this time.
0 commit comments