Skip to content

Commit

Permalink
Properly name collection item textual iteration scope handler
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasArvidsson committed Jan 14, 2025
1 parent d98bf09 commit d71ac9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import type {
import type { ScopeHandlerFactory } from "../ScopeHandlerFactory";
import { OneWayNestedRangeFinder } from "../util/OneWayNestedRangeFinder";
import { OneWayRangeFinder } from "../util/OneWayRangeFinder";
import { collectionItemIterationScopeHandler } from "./collectionItemIterationScopeHandler";
import { collectionItemTextualIterationScopeHandler } from "./collectionItemTextualIterationScopeHandler";
import { createTargetScope } from "./createTargetScope";
import { getInteriorRanges } from "./getInteriorRanges";
import { getSeparatorOccurrences } from "./getSeparatorOccurrences";
Expand All @@ -26,7 +26,7 @@ export class CollectionItemTextualScopeHandler extends BaseScopeHandler {
protected isHierarchical = true;

get iterationScopeType(): ComplexScopeType {
return collectionItemIterationScopeHandler;
return collectionItemTextualIterationScopeHandler;
}

constructor(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { TargetScope } from "../scope.types";
import type { ComplexScopeType } from "../scopeHandler.types";
import { separatorRegex } from "./getSeparatorOccurrences";

export const collectionItemIterationScopeHandler: ComplexScopeType = {
export const collectionItemTextualIterationScopeHandler: ComplexScopeType = {
type: "fallback",
scopeTypes: [
{
Expand Down

0 comments on commit d71ac9d

Please sign in to comment.