soiz1's picture
Upload folder using huggingface_hub
8f3f8db verified
raw
history blame contribute delete
243 Bytes
public
addAllClassVarsFor: aClass
"Add the class variables for the given class (and its superclasses) to the code base as constants."
| allClasses |
allClasses := aClass withAllSuperclasses.
allClasses do: [:c | self addClassVarsFor: c].