google/closure-compiler
在 GitHub 查看Closure compiler fails to parse "interface" as parameter name
Open
#2,852 创建于 2018年3月15日
P3Parserhelp wanted
仓库指标
- Star
- (7,176 star)
- PR 合并指标
- (平均合并 3天 4小时) (30 天内合并 1 个 PR)
描述
Closure compiler is unable to parse "interface" being used as the name of a parameter. This code does successfully execute in Chrome, Safari, and Firefox devtools.
(function x(interface) { console.log(interface); })('test')