mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-29 22:03:40 -06:00
.cosmetics
git-svn-id: svn://ultimatepp.org/upp/trunk@8558 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
a5045552ba
commit
05e7872433
1 changed files with 4 additions and 0 deletions
|
|
@ -200,6 +200,9 @@ void AssistEditor::ExpressionType(const String& ttype, const String& usings,
|
|||
type = ResolveTParam(Qualify(ttype, id.Mid(0, q - 1), usings), tparam);
|
||||
id = id.Mid(q + 1);
|
||||
}
|
||||
q = id.Find('<'); // as in Single<Display>
|
||||
if(q >= 0)
|
||||
id.Trim(q);
|
||||
LLOG("ExpressionType " << type << " ii: " << ii << " id:" << id << " variable:" << variable);
|
||||
if(*id == '.' || (!variable && !iscid(*id))) {
|
||||
ExpressionType(ttype, usings, xp, ii + 1, typeset, false, lvl + 1);
|
||||
|
|
@ -211,6 +214,7 @@ void AssistEditor::ExpressionType(const String& ttype, const String& usings,
|
|||
id = "operator" + id;
|
||||
LLOG("id as: " << id);
|
||||
}
|
||||
LDUMP(id);
|
||||
Index< Tuple2<String, bool> > mtype;
|
||||
for(int i = 0; i < n.GetCount(); i++) {
|
||||
const CppItem& m = n[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue