Example #1
0
        public RemoteValueVariableInformation(VarInfoBuilder varInfoBuilder, string formatSpecifier,
                                              IRemoteValueFormat remoteValueFormat,
                                              ValueFormat fallbackValueFormat,
                                              RemoteValue remoteValue, string displayName,
                                              CustomVisualizer customVisualizer,
                                              IRemoteValueChildAdapterFactory childAdapterFactory)
        {
            _varInfoBuilder      = varInfoBuilder;
            _remoteValueFormat   = remoteValueFormat;
            _remoteValue         = remoteValue;
            _childAdapterFactory = childAdapterFactory;

            DisplayName         = displayName;
            FormatSpecifier     = formatSpecifier;
            FallbackValueFormat = fallbackValueFormat;
            CustomVisualizer    = customVisualizer;
            Id = Guid.NewGuid().ToString();
        }
Example #2
0
 public LLDBVariableInformationFactory(IRemoteValueChildAdapterFactory childAdapterFactory)
 {
     _childAdapterFactory = childAdapterFactory;
 }