soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
494 Bytes
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