CustomListItemsEntity(IVariableInformation variable, NatvisScope natvisScope,
                       CustomListItemsType customList, NatvisDiagnosticLogger logger,
                       NatvisEntityStore store, NatvisExpressionEvaluator evaluator,
                       IVariableNameTransformer nameTransformer, CodeBlockParser parser)
     : base(variable, logger, evaluator, natvisScope)
 {
     _customList      = customList;
     _store           = store;
     _nameTransformer = nameTransformer;
     _parser          = parser;
 }
 public INatvisEntity Create(IVariableInformation variable, NatvisScope natvisScope,
                             CustomListItemsType customListItems) =>
 new CustomListItemsEntity(variable, natvisScope, customListItems, _logger,
                           new NatvisEntityStore(), _evaluator, _nameTransformer,
                           new CodeBlockParser(_evaluator));