This commit is contained in:
parent
3551981665
commit
8ca0a00baf
|
|
@ -6742,6 +6742,12 @@ namespace CodeCompletion
|
|||
return names;
|
||||
}
|
||||
}
|
||||
if (sil.Count > 1 && sil[0].sym_info.semantic_node_type != semantic_node_type.compiled_function_node && sil[0].sym_info.semantic_node_type != semantic_node_type.compiled_constructor_node)
|
||||
{
|
||||
var si = sil[0];
|
||||
sil.Remove(sil[0]);
|
||||
sil.Add(si);
|
||||
}
|
||||
switch (sil.FirstOrDefault().sym_info.semantic_node_type)
|
||||
{
|
||||
case semantic_node_type.compiled_function_node:
|
||||
|
|
|
|||
3
TestSuite/overloads11.pas
Normal file
3
TestSuite/overloads11.pas
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
begin
|
||||
System.Globalization.UnicodeCategory.Format{@static function Enum.Format(enumType: Type; value: Object; format: string): string;@}(typeof(System.Globalization.UnicodeCategory), a, 'd');
|
||||
end.
|
||||
Loading…
Reference in a new issue