You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -455,7 +455,7 @@ public SelectedObject getParsedObject(JSoarDebugger debugger)
455
455
456
456
protectedbooleanisWhiteSpace(charch)
457
457
{
458
-
for(charkWhiteSpaceChar : kWhiteSpaceChars)
458
+
for(charkWhiteSpaceChar : WHITE_SPACE_CHARS)
459
459
{
460
460
if(kWhiteSpaceChar == ch)
461
461
{
@@ -506,8 +506,8 @@ protected void parseTokens()
506
506
else
507
507
{
508
508
// there was no preceding attribute start. Since we have nothing to anchor on, we'll assume that the current token does not have spaces.
509
-
finalintcurrentTokenStart = lastIndexOfSet(currentLine, kWhiteSpaceChars, currentLineSelection) + 1; // add 1 because don't want to include whitespace in token
finalintcurrentTokenStart = lastIndexOfSet(currentLine, WHITE_SPACE_CHARS, currentLineSelection) + 1; // add 1 because don't want to include whitespace in token
0 commit comments