Spaces:
Running
Running
File size: 494 Bytes
8f3f8db |
1 2 3 4 5 6 7 8 9 |
JS code generator
monticelloDescriptionFor: aClass
"Answer a suitable Monticello package stamp to include in the header."
| pkgInfo pkg uuid |
pkgInfo := PackageOrganizer default packageOfClass: aClass.
pkg := MCWorkingCopy allManagers detect: [:ea| ea packageName = pkgInfo packageName].
pkg ancestry ancestors isEmpty ifFalse:
[uuid := pkg ancestry ancestors first id].
^aClass name, (pkg modified ifTrue: [' * '] ifFalse: [' ']), pkg ancestry ancestorString, ' uuid: ', uuid asString |