For the latest Dart news, visit our new blog at https://medium.com/dartlang .
The incomporable Bob Nystrom fills us in on the language design discussions taking place amongst Dart engineers. Here are his notes from the July 8th language meeting : Here's my notes! JS interop and proxies Lars tried to make a little app using JS interop. He gets warnings from dart2js because JS interop returns a proxy. The only way to get rid of the warnings is to edit the interop package itself to make it return the dynamic type. Gilad says we don't currently have a solution for general purpose proxies, though we've discussed a couple. The biggest problem is checked mode. If it was just static warnings, we could do an annotation or something to turn off the warning. For general purpose proxies, "implements dynamic" may be the best thing: it is a black hole that implements anything. We will have to educate people: most of the time you want to implement some specific type and not turn them all off like this. One thing...