class Google::Apis::ClouddebuggerV2::SourceLocation

Represents a location in the source code.

Attributes

column[RW]

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. Corresponds to the JSON property `column` @return [Fixnum]

line[RW]

Line inside the file. The first line in the file has the value `1`. Corresponds to the JSON property `line` @return [Fixnum]

path[RW]

Path to the source file within the source context of the target binary. Corresponds to the JSON property `path` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouddebugger_v2/classes.rb, line 843
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/clouddebugger_v2/classes.rb, line 848
def update!(**args)
  @column = args[:column] if args.key?(:column)
  @line = args[:line] if args.key?(:line)
  @path = args[:path] if args.key?(:path)
end