356 // transitioned from blank to here hence i should always be >= 1
357 // This check is to ensure we aren't in a character declaration
358▶ // TODO this should use language features
359 if fileJob.Content[i-1] != '\\' {
360 currentState = SString
· · ·
416 // If we started as multiline code switch back to code so we count correctly
417 // IE i := 1 /* for the lols */
418▶ // TODO is that required? Might still be required to count correctly
419 if currentState == SMulticommentCode {
420 currentState = SCode // TODO pointless to change here, just set S_MULTICOMMENT_BLANK
· · ·
420▶ currentState = SCode // TODO pointless to change here, just set S_MULTICOMMENT_BLANK
421 } else {
422 currentState = SMulticommentBlank
· · ·
592 endString := []byte{}
593
594▶ // TODO needs to be set via langFeatures.Quotes[0].IgnoreEscape for the matching feature
595 ignoreEscape := false
596 if fileJob.TrackComplexityLines {