[REBOL] Re: 'use question
From: lmecir:mbox:vol:cz at: 30-Oct-2002 16:33
Hi,
----- Original Message -----
From: "Maarten Koopmans"
> Now we face our first problem: objects. We need to traverse objects to
> filter out all I/O related variables, and they may be nested.
I may not understand what you are trying to say, but IMO there is no easy
way to do serialization of objects even if objects are globally accessible,
because the words have contexts. Example:
a: make object! [x: 'x]
b: make object! [x: 'x]
c: a/x
a/x: b/x
b/x: c
It is pretty complicated to write a general algorithm able to serialize A
and B.
Regards
-L