Skip to content

Commit cbc3e5f

Browse files
committed
move diffs to other PRs
1 parent 2f4143a commit cbc3e5f

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

dwds/lib/src/services/expression_compiler_service.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ class _Compiler {
7878
'--module-format',
7979
compilerOptions.moduleFormat.name,
8080
if (verbose) '--verbose',
81+
'--sound-null-safety',
8182
for (final experiment in compilerOptions.experiments)
8283
'--enable-experiment=$experiment',
8384
if (compilerOptions.canaryFeatures) '--canary',

frontend_server_client/example/web_client.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ void main(List<String> args) async {
2727
'--multi-root-scheme=org-dartlang-sdk',
2828
'--modules=amd',
2929
'--module-name=dart_sdk',
30+
'--sound-null-safety',
3031
'-o',
3132
dartSdkJs,
3233
p.url.join(sdkDir, sdkKernelPath),

frontend_server_common/lib/src/frontend_server_client.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@ class ResidentCompiler {
394394
],
395395
if (useDebuggerModuleNames) '--debugger-module-names',
396396
'--experimental-emit-debug-metadata',
397+
'--sound-null-safety',
397398
for (final experiment in compilerOptions.experiments)
398399
'--enable-experiment=$experiment',
399400
if (compilerOptions.canaryFeatures) '--dartdevc-canary',

0 commit comments

Comments
 (0)