Hi!
I am not quite sure how name cloud works. In particular the method #symbolsUsedInName. For example:
m := MooseGroup new. m add: (FAMIXClass new name: 'Hello'). m add: (FAMIXClass new name: 'World'). self assert: m symbolsUsedInName size equals: 1.
I would expect to have #(#Hello #World) as the result of #symbolsUsedInName.
Cheers, Alexandre
Hi,
You get only 1 because "Hello" is in the stop word list and it gets filtered out :).
Cheers, Doru
On Fri, Apr 24, 2015 at 12:12 AM, Alexandre Bergel alexandre.bergel@me.com wrote:
Hi!
I am not quite sure how name cloud works. In particular the method #symbolsUsedInName. For example:
m := MooseGroup new. m add: (FAMIXClass new name: 'Hello'). m add: (FAMIXClass new name: 'World'). self assert: m symbolsUsedInName size equals: 1.
I would expect to have #(#Hello #World) as the result of #symbolsUsedInName.
Cheers, Alexandre
-- _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;: Alexandre Bergel http://www.bergel.eu ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
ok! No idea why Hello is really a stop word, but okay
Alexandre