View Source Credo.SourceFile (Credo v1.7.2-rc.4)
SourceFile
structs represent a source file in the codebase.
Summary
Functions
Returns the AST for the given source_file
.
Returns the column of the given trigger
inside the given line.
Returns the line at the given line_no
.
Returns the snippet at the given line_no
between column1
and column2
.
Returns the lines of source code for the given source_file
.
Returns a SourceFile
struct for the given source
code and filename
.
Returns the source code for the given source_file
.
Returns the source code and filename for the given source_file_or_source
.
Types
Functions
Returns the AST for the given source_file
.
Returns the column of the given trigger
inside the given line.
NOTE: Both line_no
and the returned index are 1-based.
Returns the line at the given line_no
.
NOTE: line_no
is a 1-based index.
Returns the snippet at the given line_no
between column1
and column2
.
NOTE: line_no
is a 1-based index.
Returns the lines of source code for the given source_file
.
Returns a SourceFile
struct for the given source
code and filename
.
Returns the source code for the given source_file
.
source_and_filename(source_file_or_source, default_filename \\ "nofilename")
View SourceReturns the source code and filename for the given source_file_or_source
.