Kernel-Classes.st 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893
  1. Smalltalk createPackage: 'Kernel-Classes'!
  2. Object subclass: #Behavior
  3. instanceVariableNames: ''
  4. package: 'Kernel-Classes'!
  5. !Behavior commentStamp!
  6. I am the superclass of all class objects.
  7. I define the protocol for creating instances of a class with `#basicNew` and `#new` (see `boot.js` for class constructors details).
  8. My instances know about the subclass/superclass relationships between classes, contain the description that instances are created from,
  9. and hold the method dictionary that's associated with each class.
  10. I also provides methods for compiling methods, examining the method dictionary, and iterating over the class hierarchy.!
  11. !Behavior methodsFor: 'accessing'!
  12. >> aString
  13. ^ self methodAt: aString
  14. !
  15. allInstanceVariableNames
  16. | result |
  17. result := self instanceVariableNames copy.
  18. self superclass ifNotNil: [
  19. result addAll: self superclass allInstanceVariableNames ].
  20. ^ result
  21. !
  22. allSelectors
  23. ^ self allSuperclasses
  24. inject: self selectors
  25. into: [ :acc :each | acc addAll: each selectors; yourself ]
  26. !
  27. allSubclasses
  28. "Answer an collection of the receiver's and the receiver's descendent's subclasses. "
  29. | subclasses index |
  30. subclasses := self subclasses.
  31. index := 1.
  32. [ index > subclasses size ]
  33. whileFalse: [ subclasses addAll: (subclasses at: index) subclasses.
  34. index := index + 1 ].
  35. ^ subclasses
  36. !
  37. allSuperclasses
  38. self superclass ifNil: [ ^ #() ].
  39. ^ (OrderedCollection with: self superclass)
  40. addAll: self superclass allSuperclasses;
  41. yourself
  42. !
  43. comment
  44. ^ (self basicAt: 'comment') ifNil: [ '' ]
  45. !
  46. comment: aString
  47. self basicAt: 'comment' put: aString.
  48. SystemAnnouncer current
  49. announce: (ClassCommentChanged new
  50. theClass: self;
  51. yourself)
  52. !
  53. commentStamp
  54. ^ ClassCommentReader new
  55. class: self;
  56. yourself
  57. !
  58. commentStamp: aStamp prior: prior
  59. ^ self commentStamp
  60. !
  61. definition
  62. ^ ''
  63. !
  64. instanceVariableNames
  65. <return self.iVarNames>
  66. !
  67. javascriptConstructor
  68. "Answer the JS constructor used to instantiate. See boot.js"
  69. <return self.fn>
  70. !
  71. javascriptConstructor: aJavaScriptFunction
  72. "Set the JS constructor used to instantiate.
  73. See the JS counter-part in boot.js `$vm.setClassConstructor'"
  74. <$vm.setClassConstructor(self, aJavaScriptFunction);>
  75. !
  76. lookupSelector: selector
  77. "Look up the given selector in my methodDictionary.
  78. Return the corresponding method if found.
  79. Otherwise chase the superclass chain and try again.
  80. Return nil if no method is found."
  81. | lookupClass |
  82. lookupClass := self.
  83. [ lookupClass = nil ] whileFalse: [
  84. (lookupClass includesSelector: selector)
  85. ifTrue: [ ^ lookupClass methodAt: selector ].
  86. lookupClass := lookupClass superclass ].
  87. ^ nil
  88. !
  89. methodAt: aString
  90. ^ self methodDictionary at: aString
  91. !
  92. methodDictionary
  93. <var dict = globals.HashedCollection._new();
  94. var methods = self.methods;
  95. Object.keys(methods).forEach(function(i) {
  96. if(methods[i].selector) {
  97. dict._at_put_(methods[i].selector, methods[i]);
  98. }
  99. });
  100. return dict>
  101. !
  102. methodTemplate
  103. ^ String streamContents: [ :stream |
  104. stream
  105. nextPutAll: 'messageSelectorAndArgumentNames';
  106. nextPutAll: String lf, String tab;
  107. nextPutAll: '"comment stating purpose of message"';
  108. nextPutAll: String lf, String lf, String tab;
  109. nextPutAll: '| temporary variable names |';
  110. nextPutAll: String lf, String tab;
  111. nextPutAll: 'statements' ]
  112. !
  113. methods
  114. ^ self methodDictionary values
  115. !
  116. methodsFor: aString
  117. ^ ClassCategoryReader new
  118. class: self category: aString;
  119. yourself
  120. !
  121. methodsFor: aString stamp: aStamp
  122. "Added for compatibility, right now ignores stamp."
  123. ^ self methodsFor: aString
  124. !
  125. methodsInProtocol: aString
  126. ^ self methods select: [ :each | each protocol = aString ]
  127. !
  128. name
  129. <return self.className || nil>
  130. !
  131. organization
  132. ^ self basicAt: 'organization'
  133. !
  134. ownMethods
  135. "Answer the methods of the receiver that are not package extensions"
  136. ^ (self ownProtocols
  137. inject: OrderedCollection new
  138. into: [ :acc :each | acc, (self methodsInProtocol: each) ])
  139. sorted: [ :a :b | a selector <= b selector ]
  140. !
  141. ownProtocols
  142. "Answer the protocols of the receiver that are not package extensions"
  143. ^ self protocols reject: [ :each |
  144. each match: '^\*' ]
  145. !
  146. protocols
  147. ^ self organization elements sorted
  148. !
  149. prototype
  150. <return self.fn.prototype>
  151. !
  152. removeProtocolIfEmpty: aString
  153. self methods
  154. detect: [ :each | each protocol = aString ]
  155. ifNone: [ self organization removeElement: aString ]
  156. !
  157. selectors
  158. ^ self methodDictionary keys
  159. !
  160. subclasses
  161. self subclassResponsibility
  162. !
  163. superclass
  164. <return self.superclass || nil>
  165. !
  166. theMetaClass
  167. ^ self class
  168. !
  169. theNonMetaClass
  170. ^ self
  171. !
  172. withAllSubclasses
  173. ^ (Array with: self) addAll: self allSubclasses; yourself
  174. ! !
  175. !Behavior methodsFor: 'compiling'!
  176. addCompiledMethod: aMethod
  177. | oldMethod announcement |
  178. oldMethod := self methodDictionary
  179. at: aMethod selector
  180. ifAbsent: [ nil ].
  181. (self protocols includes: aMethod protocol)
  182. ifFalse: [ self organization addElement: aMethod protocol ].
  183. self basicAddCompiledMethod: aMethod.
  184. oldMethod ifNotNil: [
  185. self removeProtocolIfEmpty: oldMethod protocol ].
  186. announcement := oldMethod
  187. ifNil: [
  188. MethodAdded new
  189. method: aMethod;
  190. yourself ]
  191. ifNotNil: [
  192. MethodModified new
  193. oldMethod: oldMethod;
  194. method: aMethod;
  195. yourself ].
  196. SystemAnnouncer current
  197. announce: announcement
  198. !
  199. compile: aString
  200. ^ self compile: aString protocol: ''
  201. !
  202. compile: aString protocol: anotherString
  203. ^ Compiler new
  204. install: aString
  205. forClass: self
  206. protocol: anotherString
  207. !
  208. recompile
  209. ^ Compiler new recompile: self
  210. !
  211. removeCompiledMethod: aMethod
  212. self basicRemoveCompiledMethod: aMethod.
  213. self removeProtocolIfEmpty: aMethod protocol.
  214. SystemAnnouncer current
  215. announce: (MethodRemoved new
  216. method: aMethod;
  217. yourself)
  218. ! !
  219. !Behavior methodsFor: 'enumerating'!
  220. allSubclassesDo: aBlock
  221. "Evaluate the argument, aBlock, for each of the receiver's subclasses."
  222. self allSubclasses do: [ :each |
  223. aBlock value: each ]
  224. !
  225. protocolsDo: aBlock
  226. "Execute aBlock for each method protocol with
  227. its collection of methods in the sort order of protocol name."
  228. | methodsByProtocol |
  229. methodsByProtocol := HashedCollection new.
  230. self methodDictionary valuesDo: [ :m |
  231. (methodsByProtocol at: m protocol ifAbsentPut: [ Array new ])
  232. add: m ].
  233. self protocols do: [ :protocol |
  234. aBlock value: protocol value: (methodsByProtocol at: protocol) ]
  235. ! !
  236. !Behavior methodsFor: 'instance creation'!
  237. basicNew
  238. <return new self.fn()>
  239. !
  240. new
  241. ^ self basicNew initialize
  242. ! !
  243. !Behavior methodsFor: 'private'!
  244. basicAddCompiledMethod: aMethod
  245. <$vm.addMethod(aMethod, self)>
  246. !
  247. basicRemoveCompiledMethod: aMethod
  248. <$vm.removeMethod(aMethod,self)>
  249. ! !
  250. !Behavior methodsFor: 'testing'!
  251. canUnderstand: aSelector
  252. ^ (self includesSelector: aSelector asString) or: [
  253. self superclass notNil and: [ self superclass canUnderstand: aSelector ]]
  254. !
  255. includesBehavior: aClass
  256. ^ self == aClass or: [
  257. self inheritsFrom: aClass ]
  258. !
  259. includesSelector: aString
  260. ^ self methodDictionary includesKey: aString
  261. !
  262. inheritsFrom: aClass
  263. self superclass ifNil: [ ^ false ].
  264. ^ aClass == self superclass or: [
  265. self superclass inheritsFrom: aClass ]
  266. !
  267. isBehavior
  268. ^ true
  269. ! !
  270. Behavior subclass: #Class
  271. instanceVariableNames: ''
  272. package: 'Kernel-Classes'!
  273. !Class commentStamp!
  274. I am __the__ class object.
  275. My instances are the classes of the system.
  276. Class creation is done throught a `ClassBuilder` instance.!
  277. !Class methodsFor: 'accessing'!
  278. category
  279. ^ self package ifNil: [ 'Unclassified' ] ifNotNil: [ self package name ]
  280. !
  281. definition
  282. ^ String streamContents: [ :stream |
  283. stream
  284. nextPutAll: self superclass asString;
  285. nextPutAll: ' subclass: #';
  286. nextPutAll: self name;
  287. nextPutAll: String lf, String tab;
  288. nextPutAll: 'instanceVariableNames: '''.
  289. self instanceVariableNames
  290. do: [ :each | stream nextPutAll: each ]
  291. separatedBy: [ stream nextPutAll: ' ' ].
  292. stream
  293. nextPutAll: '''', String lf, String tab;
  294. nextPutAll: 'package: ''';
  295. nextPutAll: self category;
  296. nextPutAll: '''' ]
  297. !
  298. heliosClass
  299. "Should be an Helios extension. Unfortunately, since helios can browse remote
  300. environments, we can't extend base classes"
  301. ^ 'class'
  302. !
  303. package
  304. ^ self basicAt: 'pkg'
  305. !
  306. package: aPackage
  307. | oldPackage |
  308. self package = aPackage ifTrue: [ ^ self ].
  309. oldPackage := self package.
  310. self basicAt: 'pkg' put: aPackage.
  311. oldPackage organization removeElement: self.
  312. aPackage organization addElement: self.
  313. SystemAnnouncer current announce: (ClassMoved new
  314. theClass: self;
  315. oldPackage: oldPackage;
  316. yourself)
  317. !
  318. rename: aString
  319. ClassBuilder new renameClass: self to: aString
  320. !
  321. subclasses
  322. <return self.subclasses._copy()>
  323. ! !
  324. !Class methodsFor: 'browsing'!
  325. browse
  326. Finder findClass: self
  327. ! !
  328. !Class methodsFor: 'class creation'!
  329. subclass: aString instanceVariableNames: anotherString
  330. "Kept for compatibility."
  331. ^ self subclass: aString instanceVariableNames: anotherString package: nil
  332. !
  333. subclass: aString instanceVariableNames: aString2 category: aString3
  334. "Kept for compatibility."
  335. self deprecatedAPI.
  336. ^ self subclass: aString instanceVariableNames: aString2 package: aString3
  337. !
  338. subclass: aString instanceVariableNames: aString2 classVariableNames: classVars poolDictionaries: pools category: aString3
  339. "Just ignore class variables and pools. Added for compatibility."
  340. ^ self subclass: aString instanceVariableNames: aString2 package: aString3
  341. !
  342. subclass: aString instanceVariableNames: aString2 package: aString3
  343. ^ ClassBuilder new
  344. superclass: self subclass: aString asString instanceVariableNames: aString2 package: aString3
  345. ! !
  346. !Class methodsFor: 'converting'!
  347. asJavascript
  348. ^ 'globals.', self name
  349. ! !
  350. !Class methodsFor: 'printing'!
  351. printOn: aStream
  352. aStream nextPutAll: self name
  353. ! !
  354. !Class methodsFor: 'testing'!
  355. isClass
  356. ^ true
  357. ! !
  358. Behavior subclass: #Metaclass
  359. instanceVariableNames: ''
  360. package: 'Kernel-Classes'!
  361. !Metaclass commentStamp!
  362. I am the root of the class hierarchy.
  363. My instances are metaclasses, one for each real class, and have a single instance, which they hold onto: the class that they are the metaclass of.!
  364. !Metaclass methodsFor: 'accessing'!
  365. definition
  366. ^ String streamContents: [ :stream |
  367. stream
  368. nextPutAll: self asString;
  369. nextPutAll: ' instanceVariableNames: '''.
  370. self instanceVariableNames
  371. do: [ :each | stream nextPutAll: each ]
  372. separatedBy: [ stream nextPutAll: ' ' ].
  373. stream nextPutAll: '''' ]
  374. !
  375. instanceClass
  376. <return self.instanceClass>
  377. !
  378. instanceVariableNames: aCollection
  379. ClassBuilder new
  380. class: self instanceVariableNames: aCollection
  381. !
  382. package
  383. ^ self instanceClass package
  384. !
  385. subclasses
  386. ^ (self instanceClass subclasses
  387. select: [ :each | each isMetaclass not ])
  388. collect: [ :each | each theMetaClass ]
  389. !
  390. theMetaClass
  391. ^ self
  392. !
  393. theNonMetaClass
  394. ^ self instanceClass
  395. ! !
  396. !Metaclass methodsFor: 'converting'!
  397. asJavascript
  398. ^ 'globals.', self instanceClass name, '.klass'
  399. ! !
  400. !Metaclass methodsFor: 'printing'!
  401. printOn: aStream
  402. aStream
  403. nextPutAll: self instanceClass name;
  404. nextPutAll: ' class'
  405. ! !
  406. !Metaclass methodsFor: 'testing'!
  407. isMetaclass
  408. ^ true
  409. ! !
  410. Object subclass: #ClassBuilder
  411. instanceVariableNames: ''
  412. package: 'Kernel-Classes'!
  413. !ClassBuilder commentStamp!
  414. I am responsible for compiling new classes or modifying existing classes in the system.
  415. Rather than using me directly to compile a class, use `Class >> subclass:instanceVariableNames:package:`.!
  416. !ClassBuilder methodsFor: 'accessing'!
  417. instanceVariableNamesFor: aString
  418. ^ (aString tokenize: ' ') reject: [ :each | each isEmpty ]
  419. ! !
  420. !ClassBuilder methodsFor: 'class definition'!
  421. addSubclassOf: aClass named: className instanceVariableNames: aCollection package: packageName
  422. | theClass thePackage |
  423. theClass := Smalltalk globals at: className.
  424. thePackage := Package named: packageName.
  425. theClass ifNotNil: [
  426. theClass package: thePackage.
  427. theClass superclass == aClass ifFalse: [
  428. ^ self
  429. migrateClassNamed: className
  430. superclass: aClass
  431. instanceVariableNames: aCollection
  432. package: packageName ] ].
  433. ^ self
  434. basicAddSubclassOf: aClass
  435. named: className
  436. instanceVariableNames: aCollection
  437. package: packageName
  438. !
  439. class: aClass instanceVariableNames: ivarNames
  440. self basicClass: aClass instanceVariableNames: ivarNames.
  441. self setupClass: aClass.
  442. SystemAnnouncer current
  443. announce: (ClassDefinitionChanged new
  444. theClass: aClass;
  445. yourself)
  446. !
  447. superclass: aClass subclass: className
  448. ^ self superclass: aClass subclass: className instanceVariableNames: '' package: nil
  449. !
  450. superclass: aClass subclass: className instanceVariableNames: ivarNames package: packageName
  451. | newClass |
  452. newClass := self addSubclassOf: aClass
  453. named: className instanceVariableNames: (self instanceVariableNamesFor: ivarNames)
  454. package: (packageName ifNil: [ 'unclassified' ]).
  455. self setupClass: newClass.
  456. SystemAnnouncer current
  457. announce: (ClassAdded new
  458. theClass: newClass;
  459. yourself).
  460. ^ newClass
  461. ! !
  462. !ClassBuilder methodsFor: 'class migration'!
  463. migrateClass: aClass superclass: anotherClass
  464. ^ self
  465. migrateClassNamed: aClass name
  466. superclass: anotherClass
  467. instanceVariableNames: aClass instanceVariableNames
  468. package: aClass package name
  469. !
  470. migrateClassNamed: className superclass: aClass instanceVariableNames: aCollection package: packageName
  471. | oldClass newClass tmp |
  472. tmp := 'new*', className.
  473. oldClass := Smalltalk globals at: className.
  474. newClass := self
  475. addSubclassOf: aClass
  476. named: tmp
  477. instanceVariableNames: aCollection
  478. package: packageName.
  479. self basicSwapClassNames: oldClass with: newClass.
  480. [ self copyClass: oldClass to: newClass ]
  481. on: Error
  482. do: [ :exception |
  483. self
  484. basicSwapClassNames: oldClass with: newClass;
  485. basicRemoveClass: newClass.
  486. exception signal ].
  487. self
  488. rawRenameClass: oldClass to: tmp;
  489. rawRenameClass: newClass to: className.
  490. oldClass subclasses
  491. do: [ :each | self migrateClass: each superclass: newClass ].
  492. self basicRemoveClass: oldClass.
  493. SystemAnnouncer current announce: (ClassMigrated new
  494. theClass: newClass;
  495. oldClass: oldClass;
  496. yourself).
  497. ^ newClass
  498. !
  499. renameClass: aClass to: className
  500. self basicRenameClass: aClass to: className.
  501. "Recompile the class to fix potential issues with super sends"
  502. aClass recompile.
  503. SystemAnnouncer current
  504. announce: (ClassRenamed new
  505. theClass: aClass;
  506. yourself)
  507. ! !
  508. !ClassBuilder methodsFor: 'copying'!
  509. copyClass: aClass named: className
  510. | newClass |
  511. newClass := self
  512. addSubclassOf: aClass superclass
  513. named: className
  514. instanceVariableNames: aClass instanceVariableNames
  515. package: aClass package name.
  516. self copyClass: aClass to: newClass.
  517. SystemAnnouncer current
  518. announce: (ClassAdded new
  519. theClass: newClass;
  520. yourself).
  521. ^ newClass
  522. !
  523. copyClass: aClass to: anotherClass
  524. anotherClass comment: aClass comment.
  525. aClass methodDictionary valuesDo: [ :each |
  526. Compiler new install: each source forClass: anotherClass protocol: each protocol ].
  527. self basicClass: anotherClass class instanceVariables: aClass class instanceVariableNames.
  528. aClass class methodDictionary valuesDo: [ :each |
  529. Compiler new install: each source forClass: anotherClass class protocol: each protocol ].
  530. self setupClass: anotherClass
  531. ! !
  532. !ClassBuilder methodsFor: 'method definition'!
  533. installMethod: aCompiledMethod forClass: aBehavior protocol: aString
  534. aCompiledMethod protocol: aString.
  535. aBehavior addCompiledMethod: aCompiledMethod.
  536. self setupClass: aBehavior.
  537. ^ aCompiledMethod
  538. ! !
  539. !ClassBuilder methodsFor: 'private'!
  540. basicAddSubclassOf: aClass named: aString instanceVariableNames: aCollection package: packageName
  541. <
  542. $vm.addClass(aString, aClass, aCollection, packageName);
  543. return globals[aString]
  544. >
  545. !
  546. basicClass: aClass instanceVariableNames: aString
  547. self basicClass: aClass instanceVariables: (self instanceVariableNamesFor: aString)
  548. !
  549. basicClass: aClass instanceVariables: aCollection
  550. aClass isMetaclass ifFalse: [ self error: aClass name, ' is not a metaclass' ].
  551. aClass basicAt: 'iVarNames' put: aCollection
  552. !
  553. basicRemoveClass: aClass
  554. <$vm.removeClass(aClass)>
  555. !
  556. basicRenameClass: aClass to: aString
  557. <
  558. globals[aString] = aClass;
  559. delete globals[aClass.className];
  560. aClass.className = aString;
  561. >
  562. !
  563. basicSwapClassNames: aClass with: anotherClass
  564. <
  565. var tmp = aClass.className;
  566. aClass.className = anotherClass.className;
  567. anotherClass.className = tmp;
  568. >
  569. !
  570. rawRenameClass: aClass to: aString
  571. <
  572. globals[aString] = aClass;
  573. >
  574. ! !
  575. !ClassBuilder methodsFor: 'public'!
  576. setupClass: aClass
  577. <$vm.init(aClass);>
  578. ! !
  579. Object subclass: #ClassCategoryReader
  580. instanceVariableNames: 'class category'
  581. package: 'Kernel-Classes'!
  582. !ClassCategoryReader commentStamp!
  583. I provide a mechanism for retrieving class descriptions stored on a file in the Smalltalk chunk format.!
  584. !ClassCategoryReader methodsFor: 'accessing'!
  585. class: aClass category: aString
  586. class := aClass.
  587. category := aString
  588. ! !
  589. !ClassCategoryReader methodsFor: 'fileIn'!
  590. scanFrom: aChunkParser
  591. | chunk |
  592. [ chunk := aChunkParser nextChunk.
  593. chunk isEmpty ] whileFalse: [
  594. self compileMethod: chunk ].
  595. ClassBuilder new setupClass: class
  596. ! !
  597. !ClassCategoryReader methodsFor: 'initialization'!
  598. initialize
  599. super initialize.
  600. ! !
  601. !ClassCategoryReader methodsFor: 'private'!
  602. compileMethod: aString
  603. Compiler new install: aString forClass: class protocol: category
  604. ! !
  605. Object subclass: #ClassCommentReader
  606. instanceVariableNames: 'class'
  607. package: 'Kernel-Classes'!
  608. !ClassCommentReader commentStamp!
  609. I provide a mechanism for retrieving class comments stored on a file.
  610. See also `ClassCategoryReader`.!
  611. !ClassCommentReader methodsFor: 'accessing'!
  612. class: aClass
  613. class := aClass
  614. ! !
  615. !ClassCommentReader methodsFor: 'fileIn'!
  616. scanFrom: aChunkParser
  617. | chunk |
  618. chunk := aChunkParser nextChunk.
  619. chunk isEmpty ifFalse: [
  620. self setComment: chunk ].
  621. ! !
  622. !ClassCommentReader methodsFor: 'initialization'!
  623. initialize
  624. super initialize.
  625. ! !
  626. !ClassCommentReader methodsFor: 'private'!
  627. setComment: aString
  628. class comment: aString
  629. ! !
  630. Object subclass: #ClassSorterNode
  631. instanceVariableNames: 'theClass level nodes'
  632. package: 'Kernel-Classes'!
  633. !ClassSorterNode commentStamp!
  634. I provide an algorithm for sorting classes alphabetically.
  635. See [Issue #143](https://github.com/amber-smalltalk/amber/issues/143) on GitHub.!
  636. !ClassSorterNode methodsFor: 'accessing'!
  637. getNodesFrom: aCollection
  638. | children others |
  639. children := #().
  640. others := #().
  641. aCollection do: [ :each |
  642. (each superclass = self theClass)
  643. ifTrue: [ children add: each ]
  644. ifFalse: [ others add: each ]].
  645. nodes:= children collect: [ :each |
  646. ClassSorterNode on: each classes: others level: self level + 1 ]
  647. !
  648. level
  649. ^ level
  650. !
  651. level: anInteger
  652. level := anInteger
  653. !
  654. nodes
  655. ^ nodes
  656. !
  657. theClass
  658. ^ theClass
  659. !
  660. theClass: aClass
  661. theClass := aClass
  662. ! !
  663. !ClassSorterNode methodsFor: 'visiting'!
  664. traverseClassesWith: aCollection
  665. "sort classes alphabetically Issue #143"
  666. aCollection add: self theClass.
  667. (self nodes sorted: [ :a :b | a theClass name <= b theClass name ]) do: [ :aNode |
  668. aNode traverseClassesWith: aCollection ].
  669. ! !
  670. !ClassSorterNode class methodsFor: 'instance creation'!
  671. on: aClass classes: aCollection level: anInteger
  672. ^ self new
  673. theClass: aClass;
  674. level: anInteger;
  675. getNodesFrom: aCollection;
  676. yourself
  677. ! !