Skip to content

Commit

Permalink
Fixed magritte containers
Browse files Browse the repository at this point in the history
  • Loading branch information
JanBliznicenko committed Oct 9, 2023
1 parent cceb1ba commit 44026f1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion repository/BaselineOfOpenPonk/BaselineOfOpenPonk.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ BaselineOfOpenPonk >> externalProjectsBaseline: spec [

spec baseline: 'Magritte' with: [
spec
repository: 'github://JanBliznicenko/magritte:master';
repository: 'github://magritte-metamodel/magritte:b24afda';
loads: #( Core 'Magritte-Morph' ) ].

spec
Expand Down
13 changes: 13 additions & 0 deletions repository/OpenPonk-Core/MAContainer.extension.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Extension { #name : #MAContainer }

{ #category : #'*OpenPonk-Core' }
MAContainer >> definingContext [

^ self propertyAt: #definingContext ifAbsent: [ nil ]
]

{ #category : #'*OpenPonk-Core' }
MAContainer >> definingContext: anMADefiningContext [

^ self propertyAt: #definingContext put: anMADefiningContext
]

0 comments on commit 44026f1

Please sign in to comment.