debugger: introduce watchpoint-by-expression

This commit is contained in:
hjk
2011-05-09 08:35:58 +02:00
parent 8a9cde986a
commit c620749b95
15 changed files with 155 additions and 69 deletions

View File

@@ -119,9 +119,12 @@ QString BreakpointParameters::toString() const
ts << " FunctionName: " << functionName;
break;
case BreakpointByAddress:
case Watchpoint:
case WatchpointAtAddress:
ts << " Address: " << address;
break;
case WatchpointAtExpression:
ts << " Expression: " << expression;
break;
case BreakpointAtThrow:
case BreakpointAtCatch:
case BreakpointAtMain: