我可以用 Google 闭包编译器编译 SJCL 库吗?

Can I compile SJCL library with Google closure compiler?

我有一个普通的 javascript 项目,它是使用 Closure Compiler v20181210 编译和缩小的。我想在该项目中使用 SJCL 进行加密。

我将this file复制到我自己的项目中,并使用该库编写代码。但是当我尝试编译它时,Closure Compiler 从库中抛出一堆错误(粘贴在下面)。

在 SJCL 网站上,它说该文件是使用 Google Closure Compressor 压缩的。所以我想它应该与 Closure 兼容?那为什么不编译呢?

此外,我还阅读了有关外部人员的信息。但我希望所有代码都在一个缩小的文件中。对于外部人员,看起来我需要为 SJCL 进行另一个导入。

一些 Closure 编译器错误:

ERROR - cannot instantiate non-constructor
     [java] sjcl.hash.sha256=function(a){this._key[0]||this._precompute();a?(this._h=a._h.slice(0),this._buffer=a._buffer.slice(0),this._length=a._length):this.reset()};sjcl.hash.sha256.hash=function(a){return(new sjcl.hash.sha256).update(a).finalize()};


ERROR - Suspicious code. The result of the 'getprop' operator is not being used.
     [java]     (p^l))+d[b];q=l;l=p;p=h;h=n+g|0;n=k;k=f;f=e;e=g+(f&k^n&(f^k))+(f>>>2^f>>>13^f>>>22^f<<30^f<<19^f<<10)|0}c[0]=c[0]+e|0;c[1]=c[1]+f|0;c[2]=c[2]+k|0;c[3]=c[3]+n|0;c[4]=c[4]+h|0;c[5]=c[5]+p|0;c[6]=c[6]+l|0;c[7]=c[7]+q|0}};"undefined"!==typeof module&&module.exports&&(module.exports=sjcl);"function"===typeof define&&define([],function(){return sjcl});


ERROR - actual parameter 3 of AnyStorageProvider.prototype.setItem does not match formal parameter
     [java] found   : string
     [java] required: (number|undefined)
     [java]     toucan.storage.Any.setItem(LOGIN_STATE_CACHE_KEY, loginState, 'session');

编辑:我是 运行 具有所有这些参数的闭包编译器。当我删除它们时,项目会编译。但我不确定删除这些是否安全?

<arg line="--jscomp_error accessControls --jscomp_error ambiguousFunctionDecl --jscomp_error checkRegExp --jscomp_error checkTypes --jscomp_error checkVars --jscomp_error const --jscomp_error constantProperty --jscomp_error duplicateMessage --jscomp_error externsValidation --jscomp_error fileoverviewTags --jscomp_error globalThis --jscomp_error internetExplorerChecks --jscomp_error invalidCasts --jscomp_error missingProperties --jscomp_error nonStandardJsDocs --jscomp_error strictModuleDepCheck --jscomp_error typeInvalidation --jscomp_error undefinedNames --jscomp_error undefinedVars --jscomp_error unknownDefines --jscomp_error uselessCode --jscomp_error visibility"/>

Closure Compiler 为 SJCL 抛出错误,因为我为自己的项目设置了 jscomp_error 标志。没有这些,sjcl.js 可以正常编译。

我通过添加 --hide_warnings_for='sjcl.js'

修复了它

所以项目的其余部分仍然使用这些标志,但 sjcl 编译正常。