Not sure exactly, but it makes various time I got a Error: variable is not properly set.
in creation procedures' calling order. I figured out that creating class attributes before calling default_create
seemed to solve the problem. Why is that so? It doesn't seem that default_create calls something in my make routine??!!!
Try to make an example even if I don't think I can reproduce it with a simple example...
Working
class A
feature
attr: B
make
do
create attr
default_create
end
end
Error: variable is not properly set.
class A
feature
attr: B
make
do
default_create
create attr
end
end