370 // transitioned from blank to here hence i should always be >= 1
371 // This check is to ensure we aren't in a character declaration
372▶ // TODO this should use language features
373 if fileJob.Content[i-1] != '\\' {
374 currentState = SString
· · ·
430 // If we started as multiline code switch back to code so we count correctly
431 // IE i := 1 /* for the lols */
432▶ // TODO is that required? Might still be required to count correctly
433 if currentState == SMulticommentCode {
434 currentState = SCode // TODO pointless to change here, just set S_MULTICOMMENT_BLANK
· · ·
434▶ currentState = SCode // TODO pointless to change here, just set S_MULTICOMMENT_BLANK
435 } else {
436 currentState = SMulticommentBlank
· · ·
614 endString := []byte{}
615
616▶ // TODO needs to be set via langFeatures.Quotes[0].IgnoreEscape for the matching feature
617 ignoreEscape := false
618 if fileJob.TrackComplexityLines {