Skip to content

Commit

Permalink
test(es/parser): Add a test for << (#8634)
Browse files Browse the repository at this point in the history
**Related issue:**

 - Closes #7621.
  • Loading branch information
kdy1 authored Feb 13, 2024
1 parent 9b1a70b commit 2c63b31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions crates/swc/tests/fixture/issues-7xxx/7621/input/1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
const test = a << 1;
1 change: 1 addition & 0 deletions crates/swc/tests/fixture/issues-7xxx/7621/output/1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var test = a << 1;

0 comments on commit 2c63b31

Please sign in to comment.