Skip to content

Commit

Permalink
Add LiquidDocParamNode case to print function
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmengo committed Dec 5, 2024
1 parent 86015f7 commit 1a1108a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,10 @@ function printNode(
return [...doc, ...lookups];
}

case NodeTypes.LiquidDocParamNode: {
return node.name;
}

default: {
return assertNever(node);
}
Expand Down

0 comments on commit 1a1108a

Please sign in to comment.