Skip to content

Commit

Permalink
[#3771] Add WeakArray class vars.
Browse files Browse the repository at this point in the history
  • Loading branch information
akgrant43 committed May 15, 2024
1 parent 4946e12 commit 78c548f
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ BaselineOfGToolkitPrerequisites >> baseline: spec [

<baseline>
spec for: #common do: [
spec postLoadDoIt: #postLoadGToolkit:.
spec
package: 'GToolkit-PharoMigrations';
package: 'GToolkit-Pharo9-Deprecations';
Expand All @@ -22,3 +23,14 @@ BaselineOfGToolkitPrerequisites >> baseline: spec [
spec requires: #('GToolkit-PharoMigrations')];
package: 'GToolkit-Pharo9' ]
]

{ #category : #accessing }
BaselineOfGToolkitPrerequisites >> postLoadGToolkit: spec [
(PostLoaded isNotNil and: [ PostLoaded ]) ifTrue: [ ^ self ].
PostLoaded := true.

WeakArray
addClassVarNamed: 'MournLoopProcess';
addClassVarNamed: 'StopRequested';
addClassVarNamed: 'StoppedSemaphore'.
]

0 comments on commit 78c548f

Please sign in to comment.