We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1f8edd commit a33e22fCopy full SHA for a33e22f
dwds/test/fixtures/context.dart
@@ -176,7 +176,7 @@ class TestContext {
176
],
177
if (enableDebugSymbols) ...[
178
'--define',
179
- 'build_web_compilers|ddc=generate-debug-symbols=true',
+ 'build_web_compilers|ddc=output-debug-symbols=true',
180
181
if (verbose) '--verbose',
182
];
webdev/lib/src/command/shared.dart
@@ -92,6 +92,12 @@ List<String> buildRunnerArgs(
92
..add('build_web_compilers|ddc=generate-full-dill=true');
93
}
94
95
+ if (configuration.enableDebugSymbols) {
96
+ arguments
97
+ ..add('--define')
98
+ ..add('build_web_compilers|ddc=output-debug-symbols=true');
99
+ }
100
+
101
if (configuration.nullSafety != nullSafetyAuto) {
102
arguments
103
..add('--define')
0 commit comments