feat(compiler): Generate empty calls to responseHandlerSrv [LNG-286] (#979)

* Add noEmptyResponse

* Fix tests
This commit is contained in:
InversionSpaces
2023-11-17 11:43:13 +01:00
committed by GitHub
parent 11c8970fd8
commit cee444862a
10 changed files with 85 additions and 48 deletions

View File

@ -7,6 +7,7 @@ function getConfig({
noXor = false,
targetType = "air",
tracing = false,
noEmptyResponse = false,
}) {
return new AquaConfig(
logLevel,
@ -19,6 +20,7 @@ function getConfig({
air: "air",
}[targetType],
tracing,
noEmptyResponse,
);
}