Skip to content

Commit

Permalink
OpalCompiler fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-krivanek committed Nov 3, 2019
1 parent 0860660 commit b553d69
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/System-Support/SmalltalkImage.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ SmalltalkImage class >> cleanUp [

{ #category : #settings }
SmalltalkImage class >> compilerClass [
^CompilerClass

^CompilerClass ifNil: [
"use OpalCompiler as the fallback compiler if installed"
self class environment at: #OpalCompiler ifAbsent: [ nil ] ]
]

{ #category : #settings }
Expand Down

0 comments on commit b553d69

Please sign in to comment.