Go raw strings can contain // and /* ... */ text that should be preserved.
Add focused tests and scanner handling for backtick strings.
Examples to cover:
text := `Keep // and /* markers */ in raw strings`
value := 1 // remove this real comment
The filter should remove the real line comment while keeping the raw string
unchanged.
Go raw strings can contain
//and/* ... */text that should be preserved.Add focused tests and scanner handling for backtick strings.
Examples to cover:
The filter should remove the real line comment while keeping the raw string
unchanged.