| // Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| // Helper functions for the hot reload test suite. |
| |
| int get hotRestartGeneration => |
| throw Exception('Not implemented on this platform.'); |
| |
| Future<void> hotRestart() async => |
| throw Exception('Not implemented on this platform.'); |
| |
| int get hotReloadGeneration => |
| throw Exception('Not implemented on this platform.'); |
| |
| Future<void> hotReload({bool expectRejection = false}) async => |
| throw Exception('Not implemented on this platform.'); |