class SourceTyper
- SourceTyper
- Reference
- Object
Defined in:
source_typer.crConstructors
Instance Method Summary
- #files : Set(String)
- #flatten_types(types : Array(Crystal::Type)) : Array(Crystal::Type)
- #program : Crystal::Program
-
#run : Hash(String, String)
Run the entire typing flow, from semantic to file reformatting
-
#semantic(entrypoint, entrypoint_content) : Nil
Take the entrypoint file (and its textual content) and run semantic on it.
-
#signatures : Hash(String, Signature)
Signatures represents a mapping of location => Signature for def at that location
- #type_name(type : Crystal::Type) : String
-
#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).
Constructor Detail
Instance Method Detail
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.
Signatures represents a mapping of location => Signature for def at that location
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.