CLJS 编译器将为内部在 {{let}} (以及在某些情况下外部)创建的函数生成大量不必要的函数包装器。当在 {{loop}} 内部或在函数使用 {{recur}} 来解决 JS {{var}} 的特性问题时,这些函数包装器才必要。据我所知,这个提交 [1] 改变了行为,使其始终这样做。
这可能会生成大量“多余的”代码,这些代码Closure Compiler无法消除。
一个示例展示了这些包装函数甚至在没有使用任何本地变量的情况下也可以拥有非常长的参数列表。
(ns test.app)
(defn other [x])
(defn dummy [{:strs [foo bar coll] :as p}])
(let [x "test"]
y "test"
z "test"
a (fn [i] i)
b (fn [i] i)
c (fn [i] i)
(fn return []
(array a b c))
))
生成的代码
// 使用 ClojureScript 1.10.520 编译 {}
goog.provide('test.app');
goog.require('cljs.core');
test.app.other = function test$app$other(x) {
return null;
};
test.app.dummy = function test$app$dummy(p__526) {
var map__527 = p__526;
var map__527__$1 = (!(map__527 == null)
? map__527.cljs$lang$protocol_mask$partition0$ & 64 ||
cljs.core.PROTOCOL_SENTINEL === map__527.cljs$core$ISeq$
? true
: false)
: false)
? cljs.core.apply.call(null, cljs.core.hash_map, map__527)
: map__527;
var p = map__527__$1;
var foo = cljs.core.get.call(null, map__527__$1, 'foo');
var bar = cljs.core.get.call(null, map__527__$1, 'bar');
var coll = cljs.core.get.call(null, map__527__$1, 'coll');
var x = 'test';
var y = 'test';
var z = 'test';
 >// this could just be var a = function(i) { return i };
var a = (function(x, y, z, map__527, map__527__$1, p, foo, bar, coll) {
return function(i) {
return i;
};
})(x, y, z, map__527, map__527__$1, p, foo, bar, coll);
var b = (function(x, y, z, a, map__527, map__527__$1, p, foo, bar, coll) {
return function(i) {
return i;
};
})(x, y, z, a, map__527, map__527__$1, p, foo, bar, coll);
var c = (function(x, y, z, a, b, map__527, map__527__$1, p, foo, bar, coll) {
return function(i) {
return i;
};
})(x, y, z, a, b, map__527, map__527__$1, p, foo, bar, coll);
返回(function(x, y, z, a, b, c, map__527, map__527__$1, p, foo, bar, coll) {
返回一个函数 test$app$dummy_$_return() {
返回[a, b, c];
};
})(x, y, z, a, b, c, map__527, map__527__$1, p, foo, bar, coll);
};
印象流源路径标识符=app.js.map
我还没有进行基准测试,但我非常确信这也有一定的运行时开销。
导致此问题的代码应仅针对实际需要发出这些包装器,并且仅针对实际使用的局部变量进行优化。
或者,我们可以使用JS {{const}}(或{{let}}),因为现在>98%的浏览器都支持这个[2]而且Closure编译器会根据一定的{{:language-out}}设置为我们生成这些函数包装器(例如,当前默认值)。
[1]
https://github.com/clojure/clojurescript/commit/78d20eebbbad17d476fdce04f2afd7489a507df7[2]
https://caniuse.cn/#feat=const