feat: subscribe to breakpoints event

This commit is contained in:
karishmas6
2024-06-05 04:30:59 +05:30
parent d18d86ac9d
commit ca79b9be98

View File

@@ -100,6 +100,9 @@ export class WorkflowInterpreter {
logger.log('debug', "Step called but no resume function is set");
}
});
this.socket.on('breakpoints', (data: boolean[]) => {
logger.log('debug', "Setting breakpoints: " + data);
this.breakpoints = data
});
}
}