Unverified Commit ac6afa4d authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

fix windows codegen (#29062)

parent a07c9a12
...@@ -149,7 +149,7 @@ class CodeGeneratingKernelCompiler implements KernelCompiler { ...@@ -149,7 +149,7 @@ class CodeGeneratingKernelCompiler implements KernelCompiler {
depFilePath: depFilePath, depFilePath: depFilePath,
targetModel: targetModel, targetModel: targetModel,
// Pass an invalid file name to prevent frontend_server from initializing from dill. // Pass an invalid file name to prevent frontend_server from initializing from dill.
initializeFromDill: ' ', initializeFromDill: 'none_file',
); );
} }
} }
...@@ -189,7 +189,7 @@ class CodeGeneratingResidentCompiler implements ResidentCompiler { ...@@ -189,7 +189,7 @@ class CodeGeneratingResidentCompiler implements ResidentCompiler {
targetModel: TargetModel.flutter, targetModel: TargetModel.flutter,
unsafePackageSerialization: unsafePackageSerialization, unsafePackageSerialization: unsafePackageSerialization,
// Pass an invalid file name to prevent frontend_server from initializing from dill. // Pass an invalid file name to prevent frontend_server from initializing from dill.
initializeFromDill: ' ', initializeFromDill: 'none_file',
); );
return CodeGeneratingResidentCompiler._(residentCompiler, codegenDaemon); return CodeGeneratingResidentCompiler._(residentCompiler, codegenDaemon);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment