Files
babel/packages/babel-generator/test/fixtures/comments/simple-multi-comment/actual.js
2015-10-05 16:37:37 +01:00

23 lines
191 B
JavaScript

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