Have there been any papers written on implementing design patterns in delegation/object based languages? I'm interested in how delegation or object based...
1481
Albertina Lourenci
lourenci@...
Jan 3, 2003 3:08 pm
James McCartney wrote: Dear James: It is curious but there is a general trend in all new computational paradigms (AOSD, HyperJ, etc) to be unable to discard...
... You might want to search the archives of this list for "design patterns". There were several interesting discussions, including the one starting at...
Thanks for the ref. One thing about using delegation for something like Chain of Responsibility: If you've delegated to a parent and that parent has its own...
1484
christian.hresko
godpup@...
Jan 4, 2003 5:25 am
has anyone on this list read (or heard things about) the book "Constructing Language Processors For Little Languages?" since Self is a little language, i...
... I would say that this is not normally dealt with. You know the old joke: "Doctor, it hurts when I do this." "Then don't do that!" You avoid the problem by...
... I have heard about this book by Randy Kaplan, but haven't read it. I thought a friend had and had sent me some comments but I wasn't able to find them. ...
1487
Kyle Hayes
kyle_hayes@...
Jan 8, 2003 4:46 am
... I think that would be me. However, I cannot for the life of me find the book. Moving will do that. I only started to read the book if I recall ...
... There is (was?) a mailing list for the discussion of little languages by the author, and Smalltalk and derivatives were discounted if they were not ...
prototype-based languages t-shirts and other goodies: http://www.cafeshops.com/prototypes Cheers, Steve...
1490
christian.hresko
godpup@...
Jan 14, 2003 6:38 am
okay, i just installed jaguar, and downloaded all the latest Self 'stuff.39; for the life of me i can't get self to work. this happened before. if i try to use...
You should be able to set the SELF_WORKING_DIR to the full path of the Self folder in your .tcshrc . Logout and log back in and the drop app should work....
1492
godpup@...
Jan 14, 2003 7:11 pm
i think this is in the help file somewhere. i'll have a look tonight. thanks for the info. christian On Tue, 14 Jan 2003 08:14:52 -0500 Theodore Witkamp...
hi people on the self list. I've been on this list for a while, but my interests are changing. I think that Self *is* a great project and it is good to see...
Eliot Miranda's talk this Wednesday should be of great interest to many people in this group: http://www.stanford.edu/class/ee380/Abstracts/030312.html ... I...
... It is okay, but not enough since clipping is not fully implemented but only has some methods here and there. In particular, this line would be needed: c gc...
Please distribute widely ... ESUG is proud to announce the second international call for its Sponsoring Program of Smalltalk books. ...
1499
Albertina Lourenci
lourenci@...
Apr 1, 2003 4:15 pm
Hi Latin American Selfers! Hope you enjoy this message! There are plenty of free books to be downloaded! See the previous message! Albertina Hi Albertina, how...
This reminded my of Self's interface to objects somehow: http://www.nakedobjects.org/ Cheers, Steve Io, a small language: http://www.iolanguage.com/...
When Self follows an inheritance chain, will it activate methods in parent slots? That is, if set an Object to have a parent slot containing a method(instead...
1502
David Ungar
David.Ungar@...
Apr 7, 2003 6:09 am
Well, Randy always wanted it to, but we never implemented it. - Dave...
Do you have a specific problem in mind that can benefit from this feature? ... -- ... SuperCollider - a real time synthesis programming language for the ...
... Someone on the Io list was interested in using it to implement private slots. (the parent block would check the sender before deciding which parent to use)...
... Dave has already answered "no", but I would like to consider the practical complications of such a scheme. Does the method take any arguments? If so, when...
... Thanks for the response. Yeah, I don't like it as it breaks the lookup loop detection scheme used in Self(setting a bit in each object tranversed) as a...
It depends on the Smalltalk. A full closure can be returned from a function and still refer to that function's variables. Self disallows this, as do some...
... That depends on what you mean by "Self block". You might be thinking about any of the following three objects: 1) what is translated from the "[...]"...