executeHotReloadCallbacks static method

void executeHotReloadCallbacks()

Executes all registered hot reload callbacks.

Implementation

static void executeHotReloadCallbacks() {
  for (final callback in _callbacks) {
    try {
      callback();
    } catch (e) {
      // print('Error in hot reload callback: $e');
    }
  }
}