Skip to content

Commit

Permalink
applying code review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagobstr committed Feb 11, 2025
1 parent 1e7312b commit b6b875e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,10 @@ class ASTTransformerTest {
transformedAST.walkDescendants(AC::class).first().origin,
original.walkDescendants(AC::class).first()
)
assertEquals(
transformedAST.walkDescendants(AD::class).first().origin,
original.walkDescendants(AD::class).first()
)
}
}
data class BazRoot(var stmts: MutableList<BazStmt> = mutableListOf()) : Node()
Expand Down

0 comments on commit b6b875e

Please sign in to comment.