Returns true if node is strict; otherwise false.
@override bool? get strict { if (_strict == null) { _strict = true; for (final node in _nodes!) { if (!node.strict!) { _strict = false; break; } } } return _strict; }