コード例 #1
0
ファイル: Variables.cs プロジェクト: googlestadia/vsi-lldb
 public IVariableInformation GetCachedView() => new RemoteValueVariableInformation(
     _varInfoBuilder, FormatSpecifier, _remoteValueFormat, FallbackValueFormat,
     _remoteValue.GetCachedView(_remoteValueFormat.GetValueFormat(FallbackValueFormat)),
     DisplayName, CustomVisualizer, _childAdapterFactory);
コード例 #2
0
 public RemoteValue GetCachedView(ValueFormat format)
 {
     return(value.GetCachedView(format));
 }