Skip to content

Commit 84c6eb0

Browse files
committed
[PreSmalltalks] Add Metavars>>setCurrentFromAssociations:
1 parent e1b13ff commit 84c6eb0

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/PreSmalltalks/Metavars.class.st

+6-1
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,13 @@ Class {
1818
#category : #PreSmalltalks
1919
}
2020

21-
{ #category : #accessing }
21+
{ #category : #'instance creation' }
2222
Metavars class >> current [
2323
current isNil ifTrue: [ current := self new ].
2424
^current
2525
]
26+
27+
{ #category : #'instance creation' }
28+
Metavars class >> setCurrentFromAssociations: as [
29+
current := self newFromAssociations: as
30+
]

0 commit comments

Comments
 (0)