google/closure-compiler
Auf GitHub ansehenClosure compiler fails to parse "interface" as parameter name
Open
#2.852 geöffnet am 15. März 2018
P3Parserhelp wanted
Repository-Metriken
- Stars
- (7.176 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 3T 4h) (1 gemergte PR in 30 T)
Beschreibung
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')