CoffeeScript CALL_END - 它的定义是什么?
根据带注释的源代码,Coffee Script 语法使用 CALL_START ArgList OptComma CALL_END
分隔函数调用的参数,但我看不到 CALL_END
的实际定义位置。它的定义是什么?
According to the annotated source, the Coffee Script grammar delimits the arguments to a function call with CALL_START ArgList OptComma CALL_END
, but I can't see where CALL_END
is actually defined. What is it defined as?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然
CALL_END
是由addImplicitParentheses
插入 重写器.咖啡Apparently
CALL_END
is inserted byaddImplicitParentheses
in rewriter.coffee