lib/google/cloud/debugger/v2/doc/google/devtools/clouddebugger/v2/data.rb in google-cloud-debugger-0.32.5 vs lib/google/cloud/debugger/v2/doc/google/devtools/clouddebugger/v2/data.rb in google-cloud-debugger-0.32.6
- old
+ new
@@ -79,10 +79,15 @@
# @return [String]
# Path to the source file within the source context of the target binary.
# @!attribute [rw] line
# @return [Integer]
# Line inside the file. The first line in the file has the value `1`.
+ # @!attribute [rw] column
+ # @return [Integer]
+ # Column within a line. The first column in a line as the value `1`.
+ # Agents that do not support setting breakpoints on specific columns ignore
+ # this field.
class SourceLocation; end
# Represents a variable or an argument possibly of a compound object type.
# Note how the following variables are represented:
#
@@ -318,11 +323,12 @@
#
# * `Invalid line number` referring to location
# * `Field f not found in class C` referring to condition
# @!attribute [rw] stack_frames
# @return [Array<Google::Devtools::Clouddebugger::V2::StackFrame>]
- # The stack at breakpoint time.
+ # The stack at breakpoint time, where stack_frames[0] represents the most
+ # recently entered function.
# @!attribute [rw] evaluated_expressions
# @return [Array<Google::Devtools::Clouddebugger::V2::Variable>]
# Values of evaluated expressions at breakpoint time.
# The evaluated expressions appear in exactly the same order they
# are listed in the `expressions` field.
@@ -387,14 +393,14 @@
# @return [String]
# Project the debuggee is associated with.
# Use project number or id when registering a Google Cloud Platform project.
# @!attribute [rw] uniquifier
# @return [String]
- # Uniquifier to further distiguish the application.
+ # Uniquifier to further distinguish the application.
# It is possible that different applications might have identical values in
# the debuggee message, thus, incorrectly identified as a single application
- # by the Controller service. This field adds salt to further distiguish the
+ # by the Controller service. This field adds salt to further distinguish the
# application. Agents should consider seeding this field with value that
# identifies the code, binary, configuration and environment.
# @!attribute [rw] description
# @return [String]
# Human readable description of the debuggee.
@@ -424,11 +430,9 @@
# deployed application.
# @!attribute [rw] ext_source_contexts
# @return [Array<Google::Devtools::Source::V1::ExtendedSourceContext>]
# References to the locations and revisions of the source code used in the
# deployed application.
- #
- # NOTE: this field is experimental and can be ignored.
# @!attribute [rw] labels
# @return [Hash{String => String}]
# A set of custom debuggee properties, populated by the agent, to be
# displayed to the user.
class Debuggee; end
\ No newline at end of file