if (toRun != null && toRun.isValid()) {
final Runnable runIt = new Runnable() {
@Override
public void run () {
try {
exe.run( toRun, getLookup().lookup( NodeJSProjectProperties.class ).getRunArguments() );
} catch ( IOException ex ) {
throw new IllegalArgumentException( ex );
}
}
};