"Evaluating first chunk of the test set"
(Smalltalk includesKey: #Smalltalk) ifFalse: [
self print: 'Require s8 execution environment.'.
self abort
].
(Smalltalk includesKey: #NodeJS) ifFalse: [
self print: 'Require NodeJS framework.'.
self abort
].
Smalltalk nativeObjectAt: #jxcore ifAbsent: [ "jxcore not present"
NodeJS process natives isNil ifTrue: [ "are we running node8 platform ?"
(Smalltalk global basicAt: #Java ifAbsent: []) toString = 'function Java() { [native code] }'
ifTrue: [ ^#node8 ].
].
self print: 'Require JX8 execution environment.'.
self abort
].
|