Files
Tagir Valeev 6980ce3a38 IDEA-235296 Refactor ensureCodeBlock: VariableExtractor updated, more tests
GitOrigin-RevId: f08d2d54594410e441e8367df7a5e246116a90bf
2020-03-17 20:53:55 +00:00

7 lines
153 B
Java

class Test {
String s1 = getString();
String s = s1 != null ? <selection>s1.trim()</selection> : "";
native String getString();
}