File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/flutter_tools/lib/src/base Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -283,7 +283,8 @@ abstract class ProcessUtils {
283
283
284
284
/// See [writelnToStdinGuarded] .
285
285
///
286
- /// In the event that the write or flush fails, this will throw an Exception.
286
+ /// In the event that the write or flush fails, this will throw an exception
287
+ /// that preserves the stack trace of the callsite.
287
288
static Future <void > writelnToStdinUnsafe ({
288
289
required IOSink stdin,
289
290
required String line,
@@ -297,7 +298,8 @@ abstract class ProcessUtils {
297
298
298
299
/// See [writeToStdinGuarded] .
299
300
///
300
- /// In the event that the write or flush fails, this will throw an Exception.
301
+ /// In the event that the write or flush fails, this will throw an exception
302
+ /// that preserves the stack trace of the callsite.
301
303
static Future <void > writeToStdinUnsafe ({
302
304
required IOSink stdin,
303
305
required String content,
You can’t perform that action at this time.
0 commit comments