comment.js 247 B

1234567891011121314151617181920212223242526
  1. function f() {
  2. return /* a */;
  3. }
  4. function x() {
  5. return func2
  6. //comment
  7. .bar();
  8. }
  9. function f() {
  10. return (
  11. foo
  12. // comment
  13. .bar()
  14. );
  15. }
  16. fn(function f() {
  17. return (
  18. foo
  19. // comment
  20. .bar()
  21. );
  22. });