GuessManagerImpl: box values on fast-path; disable DFA on primitive types at all

Fixes IDEA-189340 Does not show Number methods during auto completion
This commit is contained in:
Tagir Valeev
2018-04-05 11:46:42 +07:00
parent c2e61e860c
commit 5fe4a9b691
4 changed files with 19 additions and 0 deletions
@@ -0,0 +1,6 @@
class Foo {
void test() {
Number x = 10;
return x.lon<caret>
}
}
@@ -0,0 +1,6 @@
class Foo {
void test() {
Number x = 10;
return x.longValue()
}
}