Skip to content

Commit 2ccffdb

Browse files
author
Anna Gringauze
committed
Make flag consistent with SDK and build_web_compilers
1 parent a33e22f commit 2ccffdb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dwds/test/fixtures/context.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ class TestContext {
176176
],
177177
if (enableDebugSymbols) ...[
178178
'--define',
179-
'build_web_compilers|ddc=output-debug-symbols=true',
179+
'build_web_compilers|ddc=emit-debug-symbols=true',
180180
],
181181
if (verbose) '--verbose',
182182
];

webdev/lib/src/command/shared.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ List<String> buildRunnerArgs(
9595
if (configuration.enableDebugSymbols) {
9696
arguments
9797
..add('--define')
98-
..add('build_web_compilers|ddc=output-debug-symbols=true');
98+
..add('build_web_compilers|ddc=emit-debug-symbols=true');
9999
}
100100

101101
if (configuration.nullSafety != nullSafetyAuto) {

0 commit comments

Comments
 (0)