File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1070,7 +1070,7 @@ async function completeAsyncIteratorValue(
1070
1070
index >= stream . initialCount
1071
1071
) {
1072
1072
// eslint-disable-next-line @typescript-eslint/no-floating-promises
1073
- executeStreamIterator (
1073
+ executeStreamAsyncIterator (
1074
1074
index ,
1075
1075
iterator ,
1076
1076
exeContext ,
@@ -1947,7 +1947,7 @@ function executeStreamField(
1947
1947
return asyncPayloadRecord ;
1948
1948
}
1949
1949
1950
- async function executeStreamIteratorItem (
1950
+ async function executeStreamAsyncIteratorItem (
1951
1951
iterator : AsyncIterator < unknown > ,
1952
1952
exeContext : ExecutionContext ,
1953
1953
fieldGroup : FieldGroup ,
@@ -2017,7 +2017,7 @@ async function executeStreamIteratorItem(
2017
2017
}
2018
2018
}
2019
2019
2020
- async function executeStreamIterator (
2020
+ async function executeStreamAsyncIterator (
2021
2021
initialIndex : number ,
2022
2022
iterator : AsyncIterator < unknown > ,
2023
2023
exeContext : ExecutionContext ,
@@ -2044,7 +2044,7 @@ async function executeStreamIterator(
2044
2044
let iteration ;
2045
2045
try {
2046
2046
// eslint-disable-next-line no-await-in-loop
2047
- iteration = await executeStreamIteratorItem (
2047
+ iteration = await executeStreamAsyncIteratorItem (
2048
2048
iterator ,
2049
2049
exeContext ,
2050
2050
fieldGroup ,
You can’t perform that action at this time.
0 commit comments