Skip to content

Commit 1ab677e

Browse files
Update from rename
1 parent 543e8a2 commit 1ab677e

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

libs/parsing/index/src/lib/post-process/post-process-iterator.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import { IDLIndex } from '../idl-index.class';
1818
import { PopulateAndValidateReturnType } from './populate-type/return/populate-and-validate-return-type';
1919
import { RECURSE_INTO } from './post-process-iterator.interface';
2020
import { POPULATE_TYPE_HANDLER } from './tree-handlers/populate-type-handler';
21-
import { SetVariables } from './tree-handlers/set-variables';
21+
import { SetVariablesForIterators } from './tree-handlers/set-variables-for-iterators';
2222
import { VALIDATE_TYPE_HANDLER } from './tree-handlers/validate-type-handler';
2323
import { ValidateVariableUsage } from './tree-handlers/validate-variable-usage';
2424

@@ -61,7 +61,11 @@ export function PostProcessIterator(
6161
*/
6262
if (topToken.name in RECURSE_INTO) {
6363
// update variables that we are tracking
64-
SetVariables(topToken.scopeTokens[0] || topToken, parsed, variables);
64+
SetVariablesForIterators(
65+
topToken.scopeTokens[0] || topToken,
66+
parsed,
67+
variables
68+
);
6569

6670
/**
6771
* Callbacks for populating types

0 commit comments

Comments
 (0)