class Property
Attributes
field[RW]
type[RW]
Public Class Methods
new(type:, field:)
click to toggle source
# File lib/sjScript.rb, line 5 def initialize(type:, field:) @type, @field = type, field end
Public Instance Methods
to_s()
click to toggle source
# File lib/sjScript.rb, line 9 def to_s "type: #{type}, field: #{field}" end