You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Wren
In the lifecycle of a class extending a foreign class, when is the foreign class data allocation executed? During the constructor of the foreign class in the constructor hierarchy?
Michel Hermier
unread,
Apr 16, 2019, 3:53:48 AM4/16/19
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to wren-lang
Code is executed line by line as a script. Even class creation. Only *immutable* data is created at parsing/compiling time. It contains string, function and a few basic objets. Higher object like list/map/class/etc are evaluated at execution.