class SourceTyper

Defined in:

source_typer.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(entrypoint : String, def_locators : Array(String), excludes : Array(String), type_blocks : Bool, type_splats : Bool, type_double_splats : Bool, prelude : String = "prelude", stats : Bool = false, progress : Bool = false, error_trace : Bool = false) #

[View source]

Instance Method Detail

def files : Set(String) #

[View source]
def flatten_types(types : Array(Crystal::Type)) : Array(Crystal::Type) #

[View source]
def program : Crystal::Program #

[View source]
def run : Hash(String, String) #

Run the entire typing flow, from semantic to file reformatting


[View source]
def semantic(entrypoint, entrypoint_content) : Nil #

Take the entrypoint file (and its textual content) and run semantic on it. Semantic results are used to generate signatures for all defs that match at least one def_locator.


[View source]
def signatures : Hash(String, Signature) #

Signatures represents a mapping of location => Signature for def at that location


[View source]
def type_name(type : Crystal::Type) : String #

[View source]
def type_source(filename, source) : String | Nil #

Given a (presumably) crystal file and its content, re-format it with the crystal-formatter-that-types-things (SourceTyperFormatter). Returns nil if no type restrictions were added anywhere.


[View source]