[index] Add 'call' and 'isDynamic' roles

This commit is contained in:
Ben Langmuir
2016-04-29 13:30:30 -07:00
parent 1b1320b9f1
commit 50eeeb7430
3 changed files with 5 additions and 4 deletions

View File

@@ -121,7 +121,7 @@ private:
initEntity(info, symbol);
auto call = static_cast<const CallRefIndexSymbol &>(symbol);
info.ReceiverUSR = call.ReceiverUSR;
info.IsDynamic = call.IsDynamic;
info.IsDynamic = call.roles & (unsigned)SymbolRole::Dynamic;
return func(info);
}
}