You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let children = @[panel(), panel(), panel()]
let foo = panel():
...children
This breaks, because the DSL uses children as the name for the variable holding its children list while the panel is being constructed, which then shadows our own children variable.
The text was updated successfully, but these errors were encountered:
This breaks, because the DSL uses
children
as the name for the variable holding its children list while the panel is being constructed, which then shadows our own children variable.The text was updated successfully, but these errors were encountered: