class Cruml::Entities::ClassInfo
- Cruml::Entities::ClassInfo
- Reference
- Object
Overview
This consists of obtaining information about the class.
Defined in:
entities/class_info.crConstructors
Instance Method Summary
-
#add_included_module(module_name : String) : Nil
Adds a module name to the list of included modules.
-
#add_instance_var(name : String, type : String) : Nil
Adds the name and the type of a instance variable into the instance vars array.
-
#add_method(method : Cruml::Entities::MethodInfo) : Nil
Adds a method into an array of methods.
-
#add_parent_class(parent_class_name : String) : Nil
Adds a parent class into an array of parent classes.
- #included_modules : Array(String)
- #instance_vars : Array({String, String})
- #methods : Array(Cruml::Entities::MethodInfo)
- #name : String
- #parent_classes : Array({String, String, Symbol})
- #type : Symbol
Constructor Detail
Instance Method Detail
def add_included_module(module_name : String) : Nil
#
Adds a module name to the list of included modules.
def add_instance_var(name : String, type : String) : Nil
#
Adds the name and the type of a instance variable into the instance vars array.
def add_method(method : Cruml::Entities::MethodInfo) : Nil
#
Adds a method into an array of methods.
def add_parent_class(parent_class_name : String) : Nil
#
Adds a parent class into an array of parent classes.