* @param syncCallback to invoke after callback, regardless of whether it has returned normally
* or thrown an exception
*/
public static RelayOk reloadScriptAsync(final DebugSession debugSession, final List<Long> ids,
final ScriptLoadCallback callback, SyncCallback syncCallback) {
ContextlessDebuggerMessage message = DebuggerMessageFactory.scripts(ids, true);
if (ids == null) {
message = DebuggerMessageFactory.scripts(ScriptsMessage.SCRIPTS_NORMAL, true);
} else {
message = DebuggerMessageFactory.scripts(ids, true);
}