Class: Xberg::CodeDataAttribute

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCodeDataAttribute

Returns a new instance of CodeDataAttribute.

Parameters:

  • name: (String)
  • value: (String)
  • byte_start: (Integer)
  • byte_end: (Integer)


258
# File 'sig/types.rbs', line 258

def initialize: (name: String, value: String, byte_start: Integer, byte_end: Integer) -> void

Instance Attribute Details

#byte_endInteger (readonly)

Returns the value of attribute byte_end.

Returns:

  • (Integer)


256
257
258
# File 'sig/types.rbs', line 256

def byte_end
  @byte_end
end

#byte_startInteger (readonly)

Returns the value of attribute byte_start.

Returns:

  • (Integer)


255
256
257
# File 'sig/types.rbs', line 255

def byte_start
  @byte_start
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


253
254
255
# File 'sig/types.rbs', line 253

def name
  @name
end

#valueString (readonly)

Returns the value of attribute value.

Returns:

  • (String)


254
255
256
# File 'sig/types.rbs', line 254

def value
  @value
end