Added smart priorities for true, false and null into basic completion

This commit is contained in:
Valentin Kipyatkov
2015-08-07 18:15:46 +03:00
parent c05d7d51ec
commit df32dcac39
5 changed files with 69 additions and 13 deletions
@@ -0,0 +1,11 @@
class X
fun f(x: X?){}
fun g(nn: Any, np: X) {
f(n<caret>)
}
// ORDER: np
// ORDER: null
// ORDER: nn