Editor: Autocomplete does not add parent's extender functions for child structs depending on order of declaration #2639
Labels
context: ui/ux
type: bug
unexpected/erroneous behavior in the existing functionality
what: editor
related to the game editor
Problem
Autocomplete does not display extender function of a parent struct for an instance of a child struct, if that extender function is declared after child struct was declared.
Example:
In this case, AutoComplete will display
FunctionEx1
as a member of Child, but notFunctionEx2
.The reason is that in AutoComplete code it only adds parent's members to Child structs when the Child struct is parsed, but not if any extenders are found later.
Expected
Autocomplete should show all Child members inherited from Parent, regardless of the order of declaration.
The text was updated successfully, but these errors were encountered: