File size: 243 Bytes
8f3f8db
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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].