Files
babel/packages/babel-generator/test/fixtures/comments/simple-multi-comment/input.js
2018-01-09 15:36:42 +01:00

23 lines
191 B
JavaScript

function test() {
/*
* Leading comment
*/
/*
*
* Leading comment 2
*
*/
var i = 20;
/*
* Trailing comment
*/
/*
*
* Trailing comment 2
*
*/
}