comments.js 233 B

123456789101112
  1. /*!
  2. * I am a comment
  3. */
  4. function foo(){return 42}// @preserve preserve
  5. // @license license
  6. function bar(){return 2*foo()}/* @preserve
  7. * multiline preserve
  8. */
  9. /* @license
  10. * multiline license
  11. */
  12. function baz(){return bar()*bar()}