Hi,
To better plan the work packages it would be great to know who is
participating to the Moose Dojo that is held at ESUG 2008?
Cheers,
Doru
--
www.tudorgirba.comwww.tudorgirba.com/blog
"Every thing should have the right to be different."
Hi,
Please register (see below) for attending the Camp Smalltalk and
implicitly if you want to attend the Moose Dojo.
Cheers,
Doru
Begin forwarded message:
>>> From: stephane ducasse <stephane.ducasse(a)free.fr>
>>> Date: August 14, 2008 2:05:24 PM CEDT
>>> To: esug-list(a)lists.esug.org
>>> Cc: The general-purpose Squeak developers list <squeak-dev(a)lists.squeakfoundation.org
>>>> , VWNC List <vwnc(a)cs.uiuc.edu>
>>> Subject: Registration needed for the Smalltalk Camp at ESUG 2008
>>>
>>> Hi all
>>>
>>> To be able to access to the building where the Smalltalk Camp of
>>> ESUG 2008 will occur,
>>> you need to register!
>>> So if you want to attend the Camp please send an email with the
>>> following header
>>> [Camp] your name and first name
>>> to denker(a)acm.org
>>>
>>> Pay attention you should send this information before wednesday
>>> 20th.
>>>
>>>
>>> Stef and the ESUG organization.
>>
--
www.tudorgirba.comwww.tudorgirba.com/blog
"There are no old things, there are only old ways of looking at them."
new version of Moose Development
FAMIXMethod>>isStub
isStub
"a fAMIXMethod is stub if it is declared as stub or if it belongs to
a stub class"
^super isStub or: [self belongsTo isStub].
a new version of Moose Development:
FAMIXPackage>>isStub
isStub
"a fAMIXPackage isStub if it is declared as stub or if all its
classes and the classes extended in it are stubs -Note that in the
last case it should contain at less one class or extended class-"
^super isStub
or:
[(self definedClasses isEmpty and: [self extendedClasses isEmpty])
not
and:
[(self definedClasses allSatisfy: [:each | each isStub])
and:
[self extendedClasses allSatisfy: [:each| each isStub]]]]
----> one related test is fixted: when a package has no class it is
not surely a stub.
a new version of Moose Development:
FAMIXNamespace>>isStub
isStub
"a fAMIXNamespace isStub if it is declared as stub or if all its
classes are stubs -Note that in the last case it should contain at
less one class-"
^super isStub or: [self classes isNotEmpty and: [self classes
allSatisfy: [:each | each isStub]]].
a new version of Moose Development:
FAMIXInvocation>>isStub
isStub
"a FAMIXInvocation is stub if it has at less one candidate -invoked-
methode, if one of the candidate methods is stub, or if the invocation
is done by a stub method"
^self candidateList isNil
or: [self candidateList isEmpty
or: [(self candidateList anySatisfy: [:mtd| mtd isStub])
or: [self invokedBy isStub]]]
I published a new version of Moose Development in which i implemented
FAMIXDefinition>>isStub in this way:
isStub
"a fAMIXInheritanceDefinition is stub if any of the subclass or the
superclass is stub"
^self superclass isStub or: [self subclass isStub]