class Cruml::Entities::ClassInfo

Overview

This consists of obtaining information about the class.

Defined in:

entities/class_info.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(name : String, type : Symbol) #

[View source]

Instance Method Detail

def add_included_module(module_name : String) : Nil #

Adds a module name to the list of included modules.


[View source]
def add_instance_var(name : String, type : String) : Nil #

Adds the name and the type of a instance variable into the instance vars array.


[View source]
def add_method(method : Cruml::Entities::MethodInfo) : Nil #

Adds a method into an array of methods.


[View source]
def add_parent_class(parent_class_name : String) : Nil #

Adds a parent class into an array of parent classes.


[View source]
def included_modules : Array(String) #

[View source]
def instance_vars : Array({String, String}) #

[View source]
def methods : Array(Cruml::Entities::MethodInfo) #

[View source]
def name : String #

[View source]
def parent_classes : Array({String, String, Symbol}) #

[View source]
def type : Symbol #

[View source]