shiraji
07/17/2016, 9:34 PMfoo(bar: <caret>Int)
val foo: <caret>Boolean
How about null-able type? Currently, if user uses expand selection, it ignores ? mark
val text: S<caret>tring? = null
this becomes
val text: <select>String</select>? = null
Where <select>String</select> is the highlighted word. I think ? should be included.
What about generics?
val text: F<caret>oo<Bar>? = null
This should be
val text<select>: Foo<Bar>?</select> = null
Is there sample test codes for word selection?