fix collecting completion stats for methods with argument suggestions

ensure that we don't change the tracked document range when starting live template
This commit is contained in:
peter
2017-02-01 11:57:32 +01:00
parent e58f41d54c
commit 67bd507337
5 changed files with 35 additions and 3 deletions
@@ -0,0 +1,8 @@
class A {
{
tes<caret>
}
void test2(int a);
void test1(int a);
}
@@ -0,0 +1,8 @@
class A {
{
test2(2)<caret>;
}
void test2(int a);
void test1(int a);
}