我有一个用 coffeescript 编写的长等式,它在编译为 JavaScript 时会产生一个函数调用:
咖啡脚本:
@u[idx] = @max(0, currU + t * ((@dU * ((@uu[right] + @uu[left] + @uu[bottom] + @uu[top]) -4 * currU) - d2) + currF * (1.0 - currU)))
JavaScript:
this.max(0, currU + t * ((this.dU * ((this.uu[right] + this.uu[left] + this.uu[bottom] + this.uu[top])(-4 * currU)) - d2) + currF * (1.0 - currU)));
问题是这部分:
((@uu[right] + @uu[left] + @uu[bottom] + @uu[top]) -4 * currU)
这变成了一个函数调用:
((this.uu[right] + this.uu[left] + this.uu[bottom] + this.uu[top])(-4 * currU))
有人可以解释这里发生了什么。