Class: Google::Cloud::Bigquery::Job::ScriptStackFrame
- Inherits:
-
Object
- Object
- Google::Cloud::Bigquery::Job::ScriptStackFrame
- Defined in:
- lib/google/cloud/bigquery/job.rb
Overview
Represents a stack frame showing the line/column/procedure name where the current evaluation happened.
Lifecycle collapse
-
#end_column ⇒ Integer
readonly
One-based end column.
-
#end_line ⇒ Integer
readonly
One-based end line.
-
#start_column ⇒ Integer
readonly
One-based start column.
-
#start_line ⇒ Integer
readonly
One-based start line.
-
#text ⇒ String
readonly
Text of the current statement/expression.
Instance Attribute Details
#end_column ⇒ Integer (readonly)
One-based end column.
681 682 683 |
# File 'lib/google/cloud/bigquery/job.rb', line 681 def end_column @end_column end |
#end_line ⇒ Integer (readonly)
One-based end line.
681 682 683 |
# File 'lib/google/cloud/bigquery/job.rb', line 681 def end_line @end_line end |
#start_column ⇒ Integer (readonly)
One-based start column.
681 682 683 |
# File 'lib/google/cloud/bigquery/job.rb', line 681 def start_column @start_column end |
#start_line ⇒ Integer (readonly)
One-based start line.
681 682 683 |
# File 'lib/google/cloud/bigquery/job.rb', line 681 def start_line @start_line end |
#text ⇒ String (readonly)
Text of the current statement/expression.
681 682 683 |
# File 'lib/google/cloud/bigquery/job.rb', line 681 def text @text end |