class Google::Apis::WorkflowexecutionsV1::Position
Position
contains source position information about the stack trace element such as line number, column number and length of the code block in bytes.
Attributes
column[RW]
The source code column position (of the line) the current instruction was generated from. Corresponds to the JSON property `column` @return [Fixnum]
length[RW]
The length in bytes of text in this character group, e.g. digits of a number, string length, or AST (abstract syntax tree) node. Corresponds to the JSON property `length` @return [Fixnum]
line[RW]
The source code line number the current instruction was generated from. Corresponds to the JSON property `line` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/workflowexecutions_v1/classes.rb, line 190 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/workflowexecutions_v1/classes.rb, line 195 def update!(**args) @column = args[:column] if args.key?(:column) @length = args[:length] if args.key?(:length) @line = args[:line] if args.key?(:line) end