mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
Fixes IDEA-339055 `Extend selection` doesn't select qualifier of string templates properly GitOrigin-RevId: 5008dfa9a1f448feda4c588362bde4e16fe6a810
8 lines
169 B
Java
8 lines
169 B
Java
class Test {
|
|
void test() {
|
|
int i = 1;
|
|
String sql = <selection>STR."""
|
|
select * from customer \{i}
|
|
"""<caret></selection>;
|
|
}
|
|
} |