Files
babel/test/fixtures/generation/comments/variable-declarator-multi-comment/expected.js
2015-01-08 01:00:32 +11:00

15 lines
209 B
JavaScript

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