How can I access sibling functions defined on init? Eg
Parent -> Child A, Child B
Child B defines:
aura_env.fn = function(a) then
print(a)
end
Child A wants to use (in it's on-show):
local b = 123 + 456
aura_env.fn(b)
When I check Parent init code it says to not edit those, but it's there. Regardless - I'd imagine children can use methods that are defined in parent's init (in parent's init I can see everything from Child A and Child B init).