You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dart editor, you should get statement completion on the nodes property of document.body, i.e., when you type this:
import("dart:html")
void main() {
document.body.nodes.
there should be a dropdown with the completion choices for NodeList, because nodes is a property that returns a NodeList.
But, dart editor showing the nodes property to be type <dynamic>, and it doesn't any statement completion choices after the dot. But, the nodes property of Node is in fact declared to return NodeList in Node.dart, so I'm not sure why this is turning into <dynamic> somehow.
The text was updated successfully, but these errors were encountered:
This issue was originally filed by mattsh@google.com
In dart editor, you should get statement completion on the nodes property of document.body, i.e., when you type this:
import("dart:html")
void main() {
document.body.nodes.
there should be a dropdown with the completion choices for NodeList, because nodes is a property that returns a NodeList.
But, dart editor showing the nodes property to be type <dynamic>, and it doesn't any statement completion choices after the dot. But, the nodes property of Node is in fact declared to return NodeList in Node.dart, so I'm not sure why this is turning into <dynamic> somehow.
The text was updated successfully, but these errors were encountered: