strict property

  1. @override
bool? strict
override

Returns true if node is strict; otherwise false.

Implementation

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

  return _strict;
}