Parens in strings are breaking subsequent syntax highlighting. Surfaced in a Spock test for me.
Ex. in the below block of code, the syntax is broken after the (s)
def "test the function is called the #expected time(s)"() {
setup:
featureFlagState = flagEnabled
when:
def result = manager.createRegistration()
then:
1 * manager.subManager.createRegistration(_,_) >> { "" }
}
Parens in strings are breaking subsequent syntax highlighting. Surfaced in a Spock test for me.
Ex. in the below block of code, the syntax is broken after the
(s)