I'm hitting an error in generated code where a local variable name is shadowing a global library name: ``` javascript instantiate(key) { let binding = this.injector[_getBinding](key); if (lang.isBlank(binding)) return exports[_notFound]; this.injector[_markAsConstructing](key); let deps = this.injector[_resolveDependencies](key, dart.as(binding, binding.Binding), true); ``` In particular, in: ``` javascript dart.as(binding, binding.Binding) ``` The first binding should be the local var, and the second should be the binding library.
I'm hitting an error in generated code where a local variable name is shadowing a global library name:
In particular, in:
The first binding should be the local var, and the second should be the binding library.