Dear SqMoose Crew,
I have a question about properties. In FileImportTest>>testFiles, there are accesses to properties, e.g., self assert: (file propertyNamed: #TLOT) = 1. self assert: (file propertyNamed: #NOCh) = 0.
(file propertyNamed: #TLOT) returns nil. It seems that the computing is not done. However, if I manually trigger the computation, getting the property returns the expected value as in:
self assert: (file totalNumberOfLinesOfText = 1). "If I remove this line, the next one return nil" self assert: (file propertyNamed: #TLOT) = 1
Any idea ? It seems that the meta stuff is not able to retrieve the method that contains the property. Any idea why?
Cheers, Alexandre