idvaluemap, FunctionGroup: consitfy completion methods
This commit is contained in:
parent
251f09ff89
commit
a437e9488b
|
@ -44,15 +44,15 @@ public:
|
||||||
return *group;
|
return *group;
|
||||||
}
|
}
|
||||||
|
|
||||||
CandidateList complete_id(const String& prefix, ByteCount cursor_pos)
|
CandidateList complete_id(const String& prefix, ByteCount cursor_pos) const
|
||||||
{
|
{
|
||||||
return m_functions.complete_id(prefix, cursor_pos);
|
return m_functions.complete_id(prefix, cursor_pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
CandidateList complete_group_id(const String& prefix, ByteCount cursor_pos)
|
CandidateList complete_group_id(const String& prefix, ByteCount cursor_pos) const
|
||||||
{
|
{
|
||||||
return m_functions.complete_id_if(
|
return m_functions.complete_id_if(
|
||||||
prefix, cursor_pos, [](FunctionAndId& func) {
|
prefix, cursor_pos, [](const FunctionAndId& func) {
|
||||||
return func.second.template target<FunctionGroup>() != nullptr;
|
return func.second.template target<FunctionGroup>() != nullptr;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,7 @@ public:
|
||||||
template<typename _Condition>
|
template<typename _Condition>
|
||||||
CandidateList complete_id_if(const String& prefix,
|
CandidateList complete_id_if(const String& prefix,
|
||||||
ByteCount cursor_pos,
|
ByteCount cursor_pos,
|
||||||
_Condition condition)
|
_Condition condition) const
|
||||||
{
|
{
|
||||||
String real_prefix = prefix.substr(0, cursor_pos);
|
String real_prefix = prefix.substr(0, cursor_pos);
|
||||||
CandidateList result;
|
CandidateList result;
|
||||||
|
@ -83,7 +83,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
CandidateList complete_id(const String& prefix,
|
CandidateList complete_id(const String& prefix,
|
||||||
ByteCount cursor_pos)
|
ByteCount cursor_pos) const
|
||||||
{
|
{
|
||||||
return complete_id_if(
|
return complete_id_if(
|
||||||
prefix, cursor_pos, [](const value_type&) { return true; });
|
prefix, cursor_pos, [](const value_type&) { return true; });
|
||||||
|
|
Loading…
Reference in New Issue
Block a user