CoffeeScript 在闭包中包装块标题注释

发布于 2024-12-06 20:49:29 字数 328 浏览 0 评论 0原文

我有以下 CS 片段:

###
jQuery Observer
Copyright 2011 All Rights Reserved
###

$ = jQuery
...

编译为:

(function() {
  /*
  jQuery Observer
  Copyright 2011 All Rights Reserved
  */
  var $;
  $ = jQuery;
  ...
}).call(this);

但是,我希望标头注释出现在文件的顶部(而不是在闭包内)。 CS里可以设置吗?

I have the following CS snippet:

###
jQuery Observer
Copyright 2011 All Rights Reserved
###

$ = jQuery
...

Which compiles to:

(function() {
  /*
  jQuery Observer
  Copyright 2011 All Rights Reserved
  */
  var $;
  $ = jQuery;
  ...
}).call(this);

However, I'd like the header comment to appear at the top of the file (not inside the closure). Is this settable within CS?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

生来就爱笑 2024-12-13 20:49:29

目前还没有办法做到这一点,但有一个开放的拉取请求看起来很有希望: https: //github.com/jashkenas/coffee-script/pull/1684

There's currently no way to do this, but there is an open pull request which looks promising: https://github.com/jashkenas/coffee-script/pull/1684

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文