339 // transitioned from blank to here hence i should always be >= 1
340 // This check is to ensure we aren't in a character declaration
341▶ // TODO this should use language features
342 if fileJob.Content[i-1] != '\\' {
343 currentState = SString
· · ·
395 // If we started as multiline code switch back to code so we count correctly
396 // IE i := 1 /* for the lols */
397▶ // TODO is that required? Might still be required to count correctly
398 if currentState == SMulticommentCode {
399 currentState = SCode // TODO pointless to change here, just set S_MULTICOMMENT_BLANK
· · ·
399▶ currentState = SCode // TODO pointless to change here, just set S_MULTICOMMENT_BLANK
400 } else {
401 currentState = SMulticommentBlank
· · ·
567 endString := []byte{}
568
569▶ // TODO needs to be set via langFeatures.Quotes[0].IgnoreEscape for the matching feature
570 ignoreEscape := false
571 if fileJob.TrackComplexityLines {