nodes property

List<CompileNode?> nodes
getter/setter pair

Flat list of all nodes inside the template including text nodes.

This is populated by the visitor in view_builder.dart, and later referenced by the visitor in view_binder.dart. It's crucial that any time a visitor method in view_builder.dart adds a node to this list, the corresponding visitor method in view_binder.dart increments the index to its current node.

Implementation

List<CompileNode?> nodes = [];