CoffeeScript 1.11.0 发布,脚本语言
栏目: CoffeeScript · 发布时间: 7年前
内容简介:CoffeeScript 1.11.0 发布了。offeeScript这一门编程语言构建在JavaScript之上,其被编译成高效的JavaScript,这样你就可以在web浏览器上运 行它,或是通过诸如用于服务器端应用的Node.js一类的技术来使用它。编译过程通常都很简单,产生出来的JavaScript与许多的最佳做法都保持了一致。此次更新内容:
CoffeeScript 1.11.0 发布了。
offeeScript这一门编程语言构建在JavaScript之上,其被编译成高效的JavaScript,这样你就可以在web浏览器上运 行它,或是通过诸如用于服务器端应用的Node.js一类的技术来使用它。编译过程通常都很简单,产生出来的JavaScript与许多的最佳做法都保持了一致。
此次更新内容:
-
CoffeeScript now supports ES2015
importandexportsyntax . -
Added the
-M, --inline-mapflag to the compiler, allowing you embed the source map directly into the output JavaScript, rather than as a separate file. -
A bunch of fixes for
yield: -
yield returncan no longer mistakenly be used as an expression. -
yieldnow mirrorsreturnin that it can be used stand-alone as well as with expressions. Where you previously wroteyield undefined, you may now write simplyyield. However, this means also inheriting the same syntax limitations thatreturnhas, so these examples no longer compile:doubles = -> yield for i in [1..3] i * 2 six = -> yield 2 * 3 -
The JavaScript output is a bit nicer, with unnecessary parentheses and spaces, double indentation and double semicolons around
yieldno longer present. -
Improved several error messages.
-
Just like
undefinedcompiles tovoid 0,NaNnow compiles into0/0andInfinityinto2e308. -
Bugfix for renamed destrucured parameters with defaults.
({a: b = 1}) ->no longer crashes the compiler. -
Improved the internal representation of a CoffeeScript program. This is only noticeable to tools that use
CoffeeScript.tokensorCoffeeScript.nodes. Such tools need to update to take account for changed or added tokens and nodes. -
Several minor bug fixes.
详细内容,请查看 发行日志 。
下载地址:
以上所述就是小编给大家介绍的《CoffeeScript 1.11.0 发布,脚本语言》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Linux程序设计
Neil Matthew、Richard Stones / 陈健、宋健建 / 人民邮电出版社 / 201005 / 99.00元
时至今日,Linux系统已经从一个个人作品发展为可以用于各种关键任务的成熟、高效和稳定的操作系统,因为具备跨平台、开源、支持众多应用软件和网络协议等优点,它得到了各大主流软硬件厂商的支持,也成为广大程序设计人员理想的开发平台。 本书是Linux程序设计领域的经典名著,以简单易懂、内容全面和示例丰富而受到广泛好评。中文版前两版出版后,在国内的Linux爱好者和程序员中也引起了强烈反响,这一热潮......一起来看看 《Linux程序设计》 这本书的介绍吧!