Files
babel/test/fixtures/generation/comments/variable-declarator-multi-comment/expected.js
Sebastian McKenzie df70be4ebb clean up and fix tests
2014-11-07 12:33:35 +11:00

14 lines
208 B
JavaScript

function test() {
var
/*
* Leading to VariableDeclarator
* Leading to VariableDeclarator
*/
i = 20,
/*
* Leading to VariableDeclarator
* Leading to VariableDeclarator
*/
j = 20;
}