空集合上的元数据丢失
user=> (meta '^:foo [])
nil ;; 期望{:foo true},如下:
user=> (meta '^:foo [1])
{:foo true}
该错误会传播到^:const变量
user=> (def ^:const foo ^:foo [])
#'user/foo
user=> (meta foo)
nil
user=> (meta @#'foo)
{:foo true}
*原因:* 与CLJ-1093类似,空集合被替换为丢失元数据的EmptyExpr
*建议:* 如果存在元数据,则不要替换为EmptyExpr。
*补丁:* 0001-Support-retrieval-of-metadata-from-quoted-empty-lite.patch
*审核者:**