Class: Google::Apis::ScriptV1::ScriptStackTraceElement
- Inherits:
-
Object
- Object
- Google::Apis::ScriptV1::ScriptStackTraceElement
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
generated/google/apis/script_v1/representations.rb,
generated/google/apis/script_v1/representations.rb
Overview
A stack trace through the script that shows where the execution failed.
Instance Attribute Summary collapse
-
#function ⇒ String
The name of the function that failed.
-
#line_number ⇒ Fixnum
The line number where the script failed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScriptStackTraceElement
constructor
A new instance of ScriptStackTraceElement.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ScriptStackTraceElement
Returns a new instance of ScriptStackTraceElement
1029 1030 1031 |
# File 'generated/google/apis/script_v1/classes.rb', line 1029 def initialize(**args) update!(**args) end |
Instance Attribute Details
#function ⇒ String
The name of the function that failed.
Corresponds to the JSON property function
1022 1023 1024 |
# File 'generated/google/apis/script_v1/classes.rb', line 1022 def function @function end |
#line_number ⇒ Fixnum
The line number where the script failed.
Corresponds to the JSON property lineNumber
1027 1028 1029 |
# File 'generated/google/apis/script_v1/classes.rb', line 1027 def line_number @line_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1034 1035 1036 1037 |
# File 'generated/google/apis/script_v1/classes.rb', line 1034 def update!(**args) @function = args[:function] if args.key?(:function) @line_number = args[:line_number] if args.key?(:line_number) end |