|
|
|
@ -1,4 +1,4 @@ |
|
|
|
|
// Copyright (c) 2015, Google Inc. |
|
|
|
|
// Copyright 2016 Google Inc. |
|
|
|
|
// |
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
|
// you may not use this file except in compliance with the License. |
|
|
|
@ -141,10 +141,9 @@ message ListBreakpointsRequest { |
|
|
|
|
// When set, the response includes only breakpoints with the specified action. |
|
|
|
|
BreakpointActionValue action = 4; |
|
|
|
|
|
|
|
|
|
// When set to `true`, the response breakpoints are stripped of the |
|
|
|
|
// results fields: `stack_frames`, `evaluated_expressions` and |
|
|
|
|
// `variable_table`. |
|
|
|
|
bool strip_results = 5; |
|
|
|
|
// This field is deprecated. The following fields are always stripped out of |
|
|
|
|
// the result: `stack_frames`, `evaluated_expressions` and `variable_table`. |
|
|
|
|
bool strip_results = 5 [deprecated = true]; |
|
|
|
|
|
|
|
|
|
// A wait token that, if specified, blocks the call until the breakpoints |
|
|
|
|
// list has changed, or a server selected timeout has expired. The value |
|
|
|
@ -160,8 +159,10 @@ message ListBreakpointsRequest { |
|
|
|
|
|
|
|
|
|
// Response for listing breakpoints. |
|
|
|
|
message ListBreakpointsResponse { |
|
|
|
|
// List of all breakpoints with complete state. |
|
|
|
|
// List of breakpoints matching the request. |
|
|
|
|
// The fields `id` and `location` are guaranteed to be set on each breakpoint. |
|
|
|
|
// The fields: `stack_frames`, `evaluated_expressions` and `variable_table` |
|
|
|
|
// are cleared on each breakpoint regardless of it's status. |
|
|
|
|
repeated Breakpoint breakpoints = 1; |
|
|
|
|
|
|
|
|
|
// A wait token that can be used in the next call to `list` (REST) or |
|
|
|
|