class Trainer::LegacyXCResult::TypeDefinition
-
-
Kind: object
-
Properties: + name:
String
+ supertype:TypeDefinition
?
-
Attributes
Public Class Methods
Source
# File trainer/lib/trainer/legacy_xcresult.rb, line 308 def initialize(data) self.name = fetch_value(data, "name") self.supertype = TypeDefinition.new(data["supertype"]) if data["supertype"] super end
Calls superclass method
Trainer::LegacyXCResult::AbstractObject::new