Skip to content

Commit

Permalink
walker: explicitly support Variable AST node type
Browse files Browse the repository at this point in the history
It wouldn't do to have the walker module throw errors because of this.
  • Loading branch information
matheusmoreira committed Sep 8, 2023
1 parent d5a82f3 commit 2be3567
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/walker/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ function walkAST(ast, before, after, options) {
case 'MixinBlock':
case 'YieldBlock':
case 'Text':
case 'Variable':
break;
case 'FileReference':
if (options.includeDependencies && ast.ast) {
Expand Down

0 comments on commit 2be3567

Please sign in to comment.