Skip to content

Commit

Permalink
Add delete statement test case
Browse files Browse the repository at this point in the history
No attached node
  • Loading branch information
cnpryer committed Jun 18, 2023
1 parent b5df670 commit 86b9536
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
del x # Trailing comment
# Dangling comment

del (
# comment
)

# Some comment
del x, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa, b, c, d # Trailing comment
# Dangling comment
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ b, c, d = (2, 3, 4)
del x # Trailing comment
# Dangling comment
del (
# comment
)
# Some comment
del x, aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa, b, c, d # Trailing comment
# Dangling comment
Expand Down Expand Up @@ -41,6 +45,10 @@ b, c, d = (2, 3, 4)
del x # Trailing comment
# Dangling comment
del (
# comment
)
# Some comment
del (
x,
Expand Down

0 comments on commit 86b9536

Please sign in to comment.