为什么 Closure Compiler 和 YUI Compressor 的注释格式不同?
我试图用谷歌搜索它,但找不到任何关于为什么 Google Closure Compiler 和 YUI Compressor 使用不同注释格式的信息
Google Closure Compiler 使用 JSDoc 格式,其中注释以 /**
开头 任何不同格式的注释都将被删除。
YUI 压缩机仅保留以 /*!
开头的注释
我注意到大多数库(例如 jQuery)使用 /*!
你能告诉我为什么大多数库使用/*!
而不是 JSDoc(我猜它很流行?)格式?
我找不到 Google Closure Compiler 的任何标志来保留以 /*!
开头的注释
使用 Google Closure Compiler 解析带有两种格式的注释的文件并保留所有注释的最佳方法是什么?使用流编辑器将 /*!
替换为 /**
并在缩小后再次返回的 Shell 脚本?
非常感谢!
I tried to google for it, but couldn't find anything on why Google Closure Compiler and YUI Compressor using different annotations format
Google Closure Compiler is using JSDoc format in which annotations starts with /**
Any annotations in different format are removed.
YUI Compressor only keep annotation if they are started with /*!
I've noticed that most libraries(e.g. jQuery) using /*!
Could you tell me why most libraries use /*!
and not JSDoc(which I guess quite popular?) format?
I couldn't find any flags for Google Closure Compiler to keep annotations starting with /*!
What's the best way to parse files with annotations in both formats with Google Closure Compiler and keep all the annotations? Shell script which using stream editor to replace /*!
with /**
and back again after minification?
Many Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Closure Compiler 会删除 JSDoc 注释中除 @license 或 @preserve 部分之外的所有注释(将其移动到文件的头部)。 “/*!”具有类似的目的。
更具体地说,没有人足够关心“/*!”要完成这项工作,请添加对 Closure Compiler 的支持。这样做应该是合理的,因为 YUI 和 Closure Compiler 都使用 Rhino 的 javascript 解析器(我不确定 YUI 使用哪个版本,但 Closure Compiler 使用当前版本)。
Closure Compiler removes all comments except those part of @license or @preserve in JSDoc annotations (which it moves to the head of the file). "/*!" serves a similar purpose.
More specifically, no one has care enough to about "/*!" to do the work add support to Closure Compiler. It should be reasonable to do so as both YUI and Closure Compiler use Rhino's javascript parser (I'm not sure what version YUI uses but Closure Compiler uses the current one).