documentation/test/fixture/trailing.input.js
Tom MacWright 0a122b51c2 Walk trailing comments. Fixes #93
cc @jfirebaugh for the review
2015-10-04 11:39:55 -04:00

19 lines
204 B
JavaScript

/**
* ONE
* @return {number} something
*/
function fooBar() {
return 1;
}
/**
* TWO
* @return {number} something
*/
function fooBaz() {
return 2;
}
/**
* this is a type
* @class Something
*/