erl_anno(3erl) | Erlang Module Definition | erl_anno(3erl) |
erl_anno - Abstract datatype for the annotations of the Erlang Compiler.
This module provides an abstract type that is used by the Erlang Compiler and its helper modules for holding data such as column, line number, and text. The data type is a collection of annotations as described in the following.
The Erlang Token Scanner returns tokens with a subset of the following annotations, depending on the options:
From this, the following annotation is derived:
This module also supports the following annotations, which are used by various modules:
The functions column(), end_location(), line(), location(), and text() in the erl_scan module can be used for inspecting annotations in tokens.
The functions anno_from_term(), anno_to_term(), fold_anno(), map_anno(), mapfold_anno(), and new_anno(), in the erl_parse module can be used for manipulating annotations in abstract code.
anno()
A collection of annotations.
anno_term() = term()
The term representing a collection of annotations. It is either a location() or a list of key-value pairs.
column() = integer() >= 1
line() = integer() >= 0
location() = line() | {line(), column()}
text() = string()
column(Anno) -> column() | undefined
Types:
column() = integer() >= 1
Returns the column of the annotations Anno.
end_location(Anno) -> location() | undefined
Types:
location() = line() | {line(), column()}
Returns the end location of the text of the annotations Anno. If there is no text, undefined is returned.
file(Anno) -> filename() | undefined
Types:
filename() = file:filename_all()
Returns the filename of the annotations Anno. If there is no filename, undefined is returned.
from_term(Term) -> Anno
Types:
Returns annotations with representation Term.
See also to_term().
generated(Anno) -> generated()
Types:
generated() = boolean()
Returns true if annotations Anno is marked as generated. The default is to return false.
is_anno(Term) -> boolean()
Types:
Returns true if Term is a collection of annotations, otherwise false.
line(Anno) -> line()
Types:
line() = integer() >= 0
Returns the line of the annotations Anno.
location(Anno) -> location()
Types:
location() = line() | {line(), column()}
Returns the location of the annotations Anno.
new(Location) -> anno()
Types:
location() = line() | {line(), column()}
Creates a new collection of annotations given a location.
set_file(File, Anno) -> Anno
Types:
filename() = file:filename_all()
Modifies the filename of the annotations Anno.
set_generated(Generated, Anno) -> Anno
Types:
generated() = boolean()
Modifies the generated marker of the annotations Anno.
set_line(Line, Anno) -> Anno
Types:
line() = integer() >= 0
Modifies the line of the annotations Anno.
set_location(Location, Anno) -> Anno
Types:
location() = line() | {line(), column()}
Modifies the location of the annotations Anno.
set_record(Record, Anno) -> Anno
Types:
record() = boolean()
Modifies the record marker of the annotations Anno.
set_text(Text, Anno) -> Anno
Types:
text() = string()
Modifies the text of the annotations Anno.
text(Anno) -> text() | undefined
Types:
text() = string()
Returns the text of the annotations Anno. If there is no text, undefined is returned.
to_term(Anno) -> anno_term()
Types:
Returns the term representing the annotations Anno.
See also from_term().
stdlib 4.2 | Ericsson AB |