ObjectGraph RebuildGraph(string expression)
 {
     this.objectGraphBuilder = new ObjectGraphBuilder(debuggerService);
     Log.Debug("Debugger visualizer: Building graph for expression: " + txtExpression.Text);
     return(this.objectGraphBuilder.BuildGraphForExpression(expression, expanded.Expressions));
 }
Exemplo n.º 2
0
 ObjectGraph rebuildGraph(string expression)
 {
     this.objectGraphBuilder = new ObjectGraphBuilder(debuggerService);
     ICSharpCode.Core.LoggingService.Debug("Debugger visualizer: Building graph for expression: " + txtExpression.Text);
     return(this.objectGraphBuilder.BuildGraphForExpression(expression, this.expanded.Expressions));
 }
		ObjectGraph RebuildGraph(string expression)
		{
			this.objectGraphBuilder = new ObjectGraphBuilder(debuggerService);
			Log.Debug("Debugger visualizer: Building graph for expression: " + txtExpression.Text);
			return this.objectGraphBuilder.BuildGraphForExpression(expression, expanded.Expressions);
		}
		ObjectGraph rebuildGraph(string expression)
		{
			this.objectGraphBuilder = new ObjectGraphBuilder(debuggerService);
			ICSharpCode.Core.LoggingService.Debug("Debugger visualizer: Building graph for expression: " + txtExpression.Text);
			return this.objectGraphBuilder.BuildGraphForExpression(expression, this.expanded.Expressions);
		}
		ObjectGraph RebuildGraph()
		{
			this.objectGraphBuilder = new ObjectGraphBuilder(debuggerService);
			return this.objectGraphBuilder.BuildGraphForExpression(this.ShownExpression, expanded.Expressions);
		}
Exemplo n.º 6
0
 ObjectGraph RebuildGraph()
 {
     this.objectGraphBuilder = new ObjectGraphBuilder(debuggerService);
     return(this.objectGraphBuilder.BuildGraphForExpression(this.ShownExpression, expanded.Expressions));
 }