Skip to content

Commit

Permalink
Add option accessor
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed Jul 18, 2023
1 parent 03b0b6b commit 5f06fb4
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions smalltalksrc/VMMakerCompatibilityForPharo6/PharoVMMaker.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,18 @@ PharoVMMaker >> initializeOutputDirectory [
^ outputDirectory := self class defaultOutputDirectory
]

{ #category : #accessing }
PharoVMMaker >> options [

^ options
]

{ #category : #accessing }
PharoVMMaker >> options: anObject [

options := anObject
]

{ #category : #accessing }
PharoVMMaker >> outputDirectory [
^ outputDirectory ifNil: [ self initializeOutputDirectory ]
Expand Down

0 comments on commit 5f06fb4

Please sign in to comment.