gpt4 book ai didi

coffeescript - 我如何转义 CoffeeScript 保留字?

转载 作者:行者123 更新时间:2023-12-03 09:24:43 25 4
gpt4 key购买 nike

我正在尝试使用用 CoffeeScript 编写的 QUnit 运行一些单元测试,但似乎有一些保留字导致了问题,最明显的是“not”。有没有办法转义 CoffeeScript 保留字?这是一个演示问题的简单测试:

module "Sad face test"

test "will not compile", ->
not false, "holy crap this creates a syntax error :-("

此生成的错误是“第 3 行的解析错误:意外的 ','”

最佳答案

我能找到的最佳答案是转义为 JavaScript 并为函数设置别名:

notEqual = `not`

module "Sad face test"

test "will not compile", ->
notEqual false, "holy crap this creates a syntax error :-("

尽管看起来 not 不是 QUnit 最新版本中的函数,所以在这个特定的实例中,您可能不需要转义 CoffeeScript 保留字。

关于coffeescript - 我如何转义 CoffeeScript 保留字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7592591/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com