Class: Google::Cloud::Debugger::V2::SourceLocation
- Inherits:
-
Object
- Object
- Google::Cloud::Debugger::V2::SourceLocation
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/clouddebugger/v2/data.rb
Overview
Represents a location in the source code.
Instance Attribute Summary collapse
-
#column ⇒ ::Integer
Column within a line.
-
#line ⇒ ::Integer
Line inside the file.
-
#path ⇒ ::String
Path to the source file within the source context of the target binary.
Instance Attribute Details
#column ⇒ ::Integer
Returns 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.
99 100 101 102 |
# File 'proto_docs/google/devtools/clouddebugger/v2/data.rb', line 99 class SourceLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#line ⇒ ::Integer
Returns Line inside the file. The first line in the file has the value 1
.
99 100 101 102 |
# File 'proto_docs/google/devtools/clouddebugger/v2/data.rb', line 99 class SourceLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#path ⇒ ::String
Returns Path to the source file within the source context of the target binary.
99 100 101 102 |
# File 'proto_docs/google/devtools/clouddebugger/v2/data.rb', line 99 class SourceLocation include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |