Hi,
Test MooseSmalltalkImporterRoelTyperTest>>testASTCore is falling because at
some point it is using class TypeCollector, which is no longer in the
system.
So what should we do:
- Remove this importer?
- Bring back TypeCollector?
========
SmalltalkImporter>>createAttribute: name for: aClass
...
ifTrue: [
possibleTypes := (TypeCollector typeInstvar: name asSymbol
ofClassWithLookup: aClass ) types.
possibleTypes size = 1
ifTrue: [attribute declaredType: (self ensureClass: possibleTypes first
theNonMetaClass) ].
].
^ attribute
=========
--
Andre Hora