Skip to content

Commit c2f7d2a

Browse files
Address suggested code changes
1 parent c237632 commit c2f7d2a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/GraphQLParser/Exceptions/GraphQLParserException.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ namespace GraphQLParser.Exceptions;
88
/// </summary>
99
public class GraphQLParserException : Exception
1010
{
11-
private static readonly char[] NewlineSeparator = ['\n'];
11+
#if NETSTANDARD2_0
12+
private static readonly char[] _newlineSeparator = ['\n'];
13+
#endif
1214

1315
/// <summary>
1416
/// Error description.
@@ -51,7 +53,11 @@ private static string HighlightSourceAtLocation(ReadOnlySpan<char> source, Locat
5153
int padLen = nextLineNum.Length;
5254
string[] lines = source
5355
.ToString()
54-
.Split(NewlineSeparator, StringSplitOptions.None)
56+
#if NETSTANDARD2_0
57+
.Split(_newlineSeparator, StringSplitOptions.None)
58+
#else
59+
.Split('\n', StringSplitOptions.None)
60+
#endif
5561
.Select(e => ReplaceWithUnicodeRepresentation(e))
5662
.ToArray();
5763

0 commit comments

Comments
 (0)