Skip to content

Commit

Permalink
fix snapshot tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TaKO8Ki committed Nov 14, 2023
1 parent 249ecfa commit 829e4a8
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 @@ -5,3 +5,11 @@ someVar1 = 123;
var someVar1;
someVar1 = '123';
someVar1 = 123;

let x = 0, y, z = 0;
var x = 0, y, z = 0;
for(let a = 0, b; a < 5; a++) {}

function ex() {
let b;
}
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ let a: number;
let b = 1
var c : string;
var d = "abn"

const x = 0;
for(let y of xs) {}
using z = f();

0 comments on commit 829e4a8

Please sign in to comment.