查看源码 erl_parse (stdlib v6.2)

此模块是基本的 Erlang 解析器,它将标记转换为形式(即,顶层结构)、表达式或项的抽象形式。

抽象格式在 ERTS 用户指南中描述。 请注意,标记列表必须以点标记结尾才能被解析函数接受(请参阅 erl_scan)模块。

错误信息

ErrorInfo 是所有 I/O 模块返回的标准 ErrorInfo 结构。格式如下:

{ErrorLine, Module, ErrorDescriptor}

使用以下调用获取描述错误的字符串

Module:format_error(ErrorDescriptor)

另请参阅

erl_anno, erl_scan, io, ERTS 用户指南中的抽象格式部分。

摘要

类型

Erlang 子句的抽象形式。

Erlang 表达式的抽象形式。

Erlang 形式的抽象形式。

Erlang 类型的抽象形式。

位串元素的抽象表示。

记录字段的抽象表示。

生成器或位串生成器的抽象表示。

远程函数调用的抽象表示。

元组 {error, error_info()}{warning, error_info()},表示语法不正确的形式和警告,以及 {eof, line()},表示在解析完完整形式之前遇到流末尾。

函数

将 Erlang 数据结构 Data 转换为类型为 AbsTerm 的抽象形式。 此函数是 normalise/1 的逆函数。

将 Erlang 数据结构 Data 转换为类型为 AbsTerm 的抽象形式。

假设 Term 是一个与 erl_parse 树具有相同结构的项,但是当 erl_parse 树具有注释集合时,该项具有术语(例如 T)。

返回一个项,其中 erl_parseAbstr 的节点的每个注释集合 Anno 都被 erl_anno:to_term(Anno) 返回的项替换。 erl_parse 树以深度优先、从左到右的方式遍历。

通过对 erl_parseAbstr 的每个注释集合应用 Fun 来更新累加器。

使用 ErrorDescriptor 并返回描述错误的字符串。

通过对 erl_parse 树的节点的每个注释集合应用 Fun 来修改 erl_parseAbstrerl_parse 树以深度优先、从左到右的方式遍历。

通过对 erl_parse 树的节点的每个注释集合应用 Fun 来修改 erl_parseAbstr,同时更新累加器。

假设 Term 是一个与 erl_parse 树具有相同结构的项,但是当 erl_parse 树具有注释集合时,该项具有 位置

将项的抽象形式 AbsTerm 转换为传统的 Erlang 数据结构(即,该项本身)。 此函数是 abstract/1 的逆函数。

Tokens 解析为好像它是一个表达式列表。

Tokens 解析为好像它是一个形式。

Tokens 解析为好像它是一个项。

生成表示表达式抽象形式 AbsTerm 的标记列表。 (可选)附加 MoreTokens

类型

-type abstract_clause() :: af_clause().

Erlang 子句的抽象形式。

Erlang 表达式的抽象形式。

Erlang 形式的抽象形式。

Erlang 类型的抽象形式。

-type af_anno() :: af_variable().
链接到此类型

af_annotated_type()

查看源码 (未导出)
-type af_annotated_type() :: {ann_type, anno(), [af_anno() | abstract_type()]}.
-type af_args() :: [abstract_expr()].
链接到此类型

af_assoc(T)

查看源码 (未导出)
-type af_assoc(T) :: {map_field_assoc, anno(), T, T} | af_assoc_exact(T).
链接到此类型

af_assoc_exact(T)

查看源码 (未导出)
-type af_assoc_exact(T) :: {map_field_exact, anno(), T, T}.
链接到此类型

af_assoc_type()

查看源码 (未导出)
-type af_assoc_type() ::
          {type, anno(), map_field_assoc, [abstract_type()]} |
          {type, anno(), map_field_exact, [abstract_type()]}.
-type af_atom() :: af_lit_atom(atom()).
链接到此类型

af_behavior()

查看源码 (未导出)
-type af_behavior() :: {attribute, anno(), behavior, behaviour()}.
链接到此类型

af_behaviour()

查看源码 (未导出)
-type af_behaviour() :: {attribute, anno(), behaviour, behaviour()}.
-type af_bin(T) :: {bin, anno(), [af_binelement(T)]}.
链接到此类型

af_binary_comprehension()

查看源码 (未导出)
-type af_binary_comprehension() :: {bc, anno(), af_template(), af_qualifier_seq()}.
链接到此类型

af_binary_op(T)

查看源码 (未导出)
-type af_binary_op(T) :: {op, anno(), binary_op(), T, T}.
-type af_binelement(T) :: {bin_element, anno(), T, af_binelement_size(), type_specifier_list()}.

位串元素的抽象表示。

链接到此类型

af_binelement_size()

查看源码 (未导出)
-type af_binelement_size() :: default | abstract_expr().
链接到此类型

af_bitstring_type()

查看源码 (未导出)
-type af_bitstring_type() :: {type, anno(), binary, [af_singleton_integer_type()]}.
链接到此类型

af_block()

查看源码 (未导出)
-type af_block() :: {block, anno(), af_body()}.
-type af_body() :: [abstract_expr(), ...].
-type af_case() :: {'case', anno(), abstract_expr(), af_clause_seq()}.
链接到此类型

af_catch()

查看源码 (未导出)
-type af_catch() :: {'catch', anno(), abstract_expr()}.
链接到此类型

af_character()

查看源码 (未导出)
-type af_character() :: {char, anno(), char()}.
链接到此类型

af_clause()

查看源码 (未导出)
-type af_clause() :: {clause, anno(), [af_pattern()], af_guard_seq(), af_body()}.
链接到此类型

af_clause_seq()

查看源码 (未导出)
-type af_clause_seq() :: [af_clause(), ...].
链接到此类型

af_compile()

查看源码 (未导出)
-type af_compile() :: {attribute, anno(), compile, any()}.
链接到此类型

af_cons(T)

查看源代码 (未导出)
-type af_cons(T) :: {cons, anno(), T, T}.
链接到此类型

af_constrained_function_type()

查看源代码 (未导出)
-type af_constrained_function_type() ::
          {type, anno(), bounded_fun, [af_function_type() | af_function_constraint()]}.
链接到此类型

af_constraint()

查看源代码 (未导出)
-type af_constraint() ::
          {type, anno(), constraint, [af_lit_atom(is_subtype) | [af_type_variable() | abstract_type()]]}.
链接到此类型

af_empty_list_type()

查看源代码 (未导出)
-type af_empty_list_type() :: {type, anno(), nil, []}.
链接到此类型

af_export()

查看源代码 (未导出)
-type af_export() :: {attribute, anno(), export, af_fa_list()}.
链接到此类型

af_export_type()

查看源代码 (未导出)
-type af_export_type() :: {attribute, anno(), export_type, af_ta_list()}.
链接到此类型

af_fa_list()

查看源代码 (未导出)
-type af_fa_list() :: [{function_name(), arity()}].
链接到此类型

af_field()

查看源代码 (未导出)
-type af_field() ::
          {record_field, anno(), af_field_name()} |
          {record_field, anno(), af_field_name(), abstract_expr()}.
-type af_field_decl() :: af_typed_field() | af_field().

记录字段的抽象表示。

链接到此类型

af_field_name()

查看源代码 (未导出)
-type af_field_name() :: af_atom().
链接到此类型

af_file()

查看源代码 (未导出)
-type af_file() :: {attribute, anno(), file, {string(), anno()}}.
链接到此类型

af_filter()

查看源代码 (未导出)
-type af_filter() :: abstract_expr().
链接到此类型

af_float()

查看源代码 (未导出)
-type af_float() :: {float, anno(), float()}.
链接到此类型

af_fun()

查看源代码 (未导出)
-type af_fun() :: {'fun', anno(), {clauses, af_clause_seq()}}.
链接到此类型

af_fun_type()

查看源代码 (未导出)
-type af_fun_type() ::
          {type, anno(), 'fun', []} |
          {type, anno(), 'fun', [{type, anno(), any} | abstract_type()]} |
          af_function_type().
链接到此类型

af_function_constraint()

查看源代码 (未导出)
-type af_function_constraint() :: [af_constraint(), ...].
链接到此类型

af_function_decl()

查看源代码 (未导出)
-type af_function_decl() :: {function, anno(), function_name(), arity(), af_clause_seq()}.
链接到此类型

af_function_spec()

查看源代码 (未导出)
-type af_function_spec() ::
          {attribute, anno(), spec_attr(), {{function_name(), arity()}, af_function_type_list()}} |
          {attribute, anno(), spec, {{module(), function_name(), arity()}, af_function_type_list()}}.
链接到此类型

af_function_type()

查看源代码 (未导出)
-type af_function_type() ::
          {type, anno(), 'fun', [{type, anno(), product, [abstract_type()]} | abstract_type()]}.
链接到此类型

af_function_type_list()

查看源代码 (未导出)
-type af_function_type_list() :: [af_constrained_function_type() | af_function_type(), ...].
-type af_generator() ::
          {generate, anno(), af_pattern(), abstract_expr()} |
          {m_generate, anno(), af_assoc_exact(af_pattern()), abstract_expr()} |
          {b_generate, anno(), af_pattern(), abstract_expr()}.

生成器或位串生成器的抽象表示。

链接到此类型

af_guard()

查看源代码 (未导出)
-type af_guard() :: [af_guard_test(), ...].
链接到此类型

af_guard_call()

查看源代码 (未导出)
-type af_guard_call() :: {call, anno(), af_atom(), [af_guard_test()]}.
链接到此类型

af_guard_seq()

查看源代码 (未导出)
-type af_guard_seq() :: [af_guard()].
链接到此类型

af_guard_test()

查看源代码 (未导出)
-type af_if() :: {'if', anno(), af_clause_seq()}.
链接到此类型

af_import()

查看源代码 (未导出)
-type af_import() :: {attribute, anno(), import, {module(), af_fa_list()}}.
链接到此类型

af_integer()

查看源代码 (未导出)
-type af_integer() :: {integer, anno(), non_neg_integer()}.
链接到此类型

af_integer_range_type()

查看源代码 (未导出)
-type af_integer_range_type() :: {type, anno(), range, [af_singleton_integer_type()]}.
链接到此类型

af_list_comprehension()

查看源代码 (未导出)
-type af_list_comprehension() :: {lc, anno(), af_template(), af_qualifier_seq()}.
链接到此类型

af_lit_atom(A)

查看源代码 (未导出)
-type af_lit_atom(A) :: {atom, anno(), A}.
链接到此类型

af_literal()

查看源代码 (未导出)
-type af_literal() :: af_atom() | af_character() | af_float() | af_integer() | af_string().
链接到此类型

af_local_call()

查看源代码 (未导出)
-type af_local_call() :: {call, anno(), af_local_function(), af_args()}.
链接到此类型

af_local_fun()

查看源代码 (未导出)
-type af_local_fun() :: {'fun', anno(), {function, function_name(), arity()}}.
链接到此类型

af_local_function()

查看源代码 (未导出)
-type af_local_function() :: abstract_expr().
链接到此类型

af_map_comprehension()

查看源代码 (未导出)
-type af_map_comprehension() :: {mc, anno(), af_assoc(abstract_expr()), af_qualifier_seq()}.
链接到此类型

af_map_creation(T)

查看源代码 (未导出)
-type af_map_creation(T) :: {map, anno(), [af_assoc(T)]}.
链接到此类型

af_map_pattern()

查看源代码 (未导出)
-type af_map_pattern() :: {map, anno(), [af_assoc_exact(af_pattern())]}.
链接到此类型

af_map_type()

查看源代码 (未导出)
-type af_map_type() :: {type, anno(), map, any} | {type, anno(), map, [af_assoc_type()]}.
链接到此类型

af_map_update(T)

查看源代码 (未导出)
-type af_map_update(T) :: {map, anno(), T, [af_assoc(T)]}.
链接到此类型

af_match(T)

查看源代码 (未导出)
-type af_match(T) :: {match, anno(), af_pattern(), T}.
链接到此类型

af_maybe()

查看源代码 (未导出)
-type af_maybe() :: {'maybe', anno(), af_body()}.
链接到此类型

af_maybe_else()

查看源代码 (未导出)
-type af_maybe_else() :: {'maybe', anno(), af_body(), {'else', anno(), af_clause_seq()}}.
链接到此类型

af_maybe_match()

查看源代码 (未导出)
-type af_maybe_match() :: {maybe_match, anno(), af_pattern(), abstract_expr()}.
链接到此类型

af_module()

查看源代码 (未导出)
-type af_module() :: {attribute, anno(), module, module()}.
链接到此类型

af_named_fun()

查看源代码 (未导出)
-type af_named_fun() :: {named_fun, anno(), fun_name(), af_clause_seq()}.
链接到此类型

af_nil()

查看源代码 (未导出)
-type af_nil() :: {nil, anno()}.
链接到此类型

af_pattern()

查看源代码 (未导出)
链接到此类型

af_predefined_type()

查看源代码 (未导出)
-type af_predefined_type() :: {type, anno(), type_name(), [abstract_type()]}.
链接到此类型

af_qualifier()

查看源代码 (未导出)
-type af_qualifier() :: af_generator() | af_filter().
链接到此类型

af_qualifier_seq()

查看源代码 (未导出)
-type af_qualifier_seq() :: [af_qualifier(), ...].
链接到此类型

af_receive()

查看源代码 (未导出)
-type af_receive() ::
          {'receive', anno(), af_clause_seq()} |
          {'receive', anno(), af_clause_seq(), abstract_expr(), af_body()}.
链接到此类型

af_record_creation(T)

查看源代码 (未导出)
-type af_record_creation(T) :: {record, anno(), record_name(), [af_record_field(T)]}.
链接到此类型

af_record_decl()

查看源代码 (未导出)
-type af_record_decl() :: {attribute, anno(), record, {record_name(), [af_field_decl()]}}.
链接到此类型

af_record_field(T)

查看源代码 (未导出)
-type af_record_field(T) :: {record_field, anno(), af_field_name(), T}.
链接到此类型

af_record_field_access(T)

查看源代码 (未导出)
-type af_record_field_access(T) :: {record_field, anno(), T, record_name(), af_field_name()}.
链接到此类型

af_record_field_type()

查看源代码 (未导出)
-type af_record_field_type() :: {type, anno(), field_type, [(Name :: af_atom()) | abstract_type()]}.
链接到此类型

af_record_index()

查看源代码 (未导出)
-type af_record_index() :: {record_index, anno(), record_name(), af_field_name()}.
链接到此类型

af_record_type()

查看源代码 (未导出)
-type af_record_type() :: {type, anno(), record, [(Name :: af_atom()) | af_record_field_type()]}.
链接到此类型

af_record_update(T)

查看源代码 (未导出)
-type af_record_update(T) :: {record, anno(), abstract_expr(), record_name(), [af_record_field(T)]}.
链接到此类型

af_remote_call()

查看源代码 (未导出)
-type af_remote_call() :: {call, anno(), af_remote_function(), af_args()}.
链接到此类型

af_remote_fun()

查看源代码 (未导出)
-type af_remote_fun() ::
          {'fun', anno(), {function, module(), function_name(), arity()}} |
          {'fun',
           anno(),
           {function,
            af_atom() | af_variable(),
            af_atom() | af_variable(),
            af_integer() | af_variable()}}.
链接到此类型

af_remote_function()

查看源码
-type af_remote_function() :: {remote, anno(), abstract_expr(), abstract_expr()}.

远程函数调用的抽象表示。

链接到此类型

af_remote_guard_call()

查看源代码 (未导出)
-type af_remote_guard_call() ::
          {call, anno(), {remote, anno(), af_lit_atom(erlang), af_atom()}, [af_guard_test()]}.
链接到此类型

af_remote_type()

查看源代码 (未导出)
-type af_remote_type() ::
          {remote_type, anno(), [(Module :: af_atom()) | (TypeName :: af_atom()) | [abstract_type()]]}.
链接到此类型

af_singleton_integer_type()

查看源代码 (未导出)
链接到此类型

af_string()

查看源代码 (未导出)
-type af_string() :: {string, anno(), string()}.
链接到此类型

af_ta_list()

查看源代码 (未导出)
-type af_ta_list() :: [{type_name(), arity()}].
链接到此类型

af_template()

查看源代码 (未导出)
-type af_template() :: abstract_expr().
链接到此类型

af_try()

查看源代码 (未导出)
-type af_try() :: {'try', anno(), af_body(), af_clause_seq() | [], af_clause_seq() | [], af_body() | []}.
链接到此类型

af_tuple(T)

查看源代码 (未导出)
-type af_tuple(T) :: {tuple, anno(), [T]}.
链接到此类型

af_tuple_type()

查看源代码 (未导出)
-type af_tuple_type() :: {type, anno(), tuple, any} | {type, anno(), tuple, [abstract_type()]}.
链接到此类型

af_type_decl()

查看源代码 (未导出)
-type af_type_decl() ::
          {attribute, anno(), type_attr(), {type_name(), abstract_type(), [af_variable()]}}.
链接到此类型

af_type_union()

查看源代码 (未导出)
-type af_type_union() :: {type, anno(), union, [abstract_type(), ...]}.
链接到此类型

af_type_variable()

查看源代码 (未导出)
-type af_type_variable() :: {var, anno(), atom()}.
链接到此类型

af_typed_field()

查看源代码 (未导出)
-type af_typed_field() :: {typed_record_field, af_field(), abstract_type()}.
链接到此类型

af_unary_op(T)

查看源代码 (未导出)
-type af_unary_op(T) :: {op, anno(), unary_op(), T}.
链接到此类型

af_user_defined_type()

查看源代码 (未导出)
-type af_user_defined_type() :: {user_type, anno(), type_name(), [abstract_type()]}.
链接到此类型

af_variable()

查看源代码 (未导出)
-type af_variable() :: {var, anno(), atom()}.
链接到此类型

af_wild_attribute()

查看源代码 (未导出)
-type af_wild_attribute() :: {attribute, anno(), atom(), any()}.
-type anno() :: erl_anno:anno().
链接到此类型

behaviour()

查看源代码 (未导出)
-type behaviour() :: atom().
链接到此类型

binary_op()

查看源代码 (未导出)
-type binary_op() ::
          '/' | '*' | 'div' | 'rem' | 'band' | 'and' | '+' | '-' | 'bor' | 'bxor' | 'bsl' | 'bsr' |
          'or' | 'xor' | '++' | '--' | '==' | '/=' | '=<' | '<' | '>=' | '>' | '=:=' | '=/=' | '!'.
链接到此类型

encoding_func()

查看源代码 (未导出)
-type encoding_func() :: fun((non_neg_integer()) -> boolean()).
链接到此类型

endianness()

查看源代码 (未导出)
-type endianness() :: big | little | native.
链接到此类型

erl_parse_tree()

查看源代码 (未导出)
-type erl_parse_tree() :: abstract_clause() | abstract_expr() | abstract_form() | abstract_type().
链接到此类型

error_description()

查看源代码 (未导出)
-type error_description() :: term().
-type error_info() :: {erl_anno:location(), module(), error_description()}.
-type form_info() ::
          {eof, erl_anno:location()} |
          {error, erl_scan:error_info() | error_info()} |
          {warning, erl_scan:error_info() | error_info()}.

元组 {error, error_info()}{warning, error_info()},表示语法不正确的形式和警告,以及 {eof, line()},表示在解析完完整形式之前遇到流末尾。

链接到此类型

fun_name()

查看源代码 (未导出)
-type fun_name() :: atom().
链接到此类型

function_name()

查看源代码 (未导出)
-type function_name() :: atom().
链接到此类型

record_name()

查看源代码 (未导出)
-type record_name() :: atom().
链接到此类型

signedness()

查看源代码 (未导出)
-type signedness() :: signed | unsigned.
链接到此类型

spec_attr()

查看源代码 (未导出)
-type spec_attr() :: callback | spec.
-type token() :: erl_scan:token().
-type type() :: integer | float | binary | bytes | bitstring | bits | utf8 | utf16 | utf32.
链接到此类型

type_attr()

查看源代码 (未导出)
-type type_attr() :: opaque | type.
链接到此类型

type_name()

查看源代码 (未导出)
-type type_name() :: atom().
链接到此类型

type_specifier()

查看源代码 (未导出)
-type type_specifier() :: type() | signedness() | endianness() | unit().
链接到此类型

type_specifier_list()

查看源代码 (未导出)
-type type_specifier_list() :: default | [type_specifier(), ...].
链接到此类型

unary_op()

查看源代码 (未导出)
-type unary_op() :: '+' | '-' | 'bnot' | 'not'.
-type unit() :: {unit, 1..256}.

函数

-spec abstract(Data) -> AbsTerm when Data :: term(), AbsTerm :: abstract_expr().

将 Erlang 数据结构 Data 转换为类型为 AbsTerm 的抽象形式。 此函数是 normalise/1 的逆函数。

erl_parse:abstract(T) 等同于 erl_parse:abstract(T, 0)

此函数的链接

abstract(Data, Options)

查看源代码 (自 OTP R16B01 起)
-spec abstract(Data, Options) -> AbsTerm
                  when
                      Data :: term(),
                      Options :: Location | [Option],
                      Option :: {encoding, Encoding} | {line, Line} | {location, Location},
                      Encoding :: latin1 | unicode | utf8 | none | encoding_func(),
                      Line :: erl_anno:line(),
                      Location :: erl_anno:location(),
                      AbsTerm :: abstract_expr().

将 Erlang 数据结构 Data 转换为类型为 AbsTerm 的抽象形式。

AbsTerm 的每个节点都分配有一个注解,请参阅 erl_anno。该注解包含由选项 location 或选项 line 给出的位置。选项 location 覆盖选项 line。如果既未给定选项 location 也未给定选项 line,则使用 0 作为位置。

选项 Encoding 用于选择将哪些整数列表视为字符串。默认值是使用函数 epp:default_encoding/0 返回的编码。值 none 表示不将任何整数列表视为字符串。encoding_func() 每次使用列表中的一个整数调用;如果它为每个整数返回 true,则该列表被视为字符串。

此函数的链接

anno_from_term(Term)

查看源代码 (自 OTP 18.0 起)
-spec anno_from_term(Term) -> erl_parse_tree() | form_info() when Term :: term().

假设 Term 是一个与 erl_parse 树具有相同结构的项,但是当 erl_parse 树具有注释集合时,该项具有术语(例如 T)。

返回一个 erl_parse 树,其中每个项 T 都被 erl_anno:from_term(T) 返回的值替换。项 Term 以深度优先、从左到右的方式遍历。

此函数的链接

anno_to_term(Abstr)

查看源代码 (自 OTP 18.0 起)
-spec anno_to_term(Abstr) -> term() when Abstr :: erl_parse_tree() | form_info().

返回一个项,其中 erl_parseAbstr 的节点的每个注释集合 Anno 都被 erl_anno:to_term(Anno) 返回的项替换。 erl_parse 树以深度优先、从左到右的方式遍历。

此函数的链接

fold_anno(Fun, Acc0, Abstr)

查看源代码 (自 OTP 18.0 起)
-spec fold_anno(Fun, Acc0, Abstr) -> Acc1
                   when
                       Fun :: fun((Anno, AccIn) -> AccOut),
                       Anno :: erl_anno:anno(),
                       Acc0 :: term(),
                       Acc1 :: term(),
                       AccIn :: term(),
                       AccOut :: term(),
                       Abstr :: erl_parse_tree() | form_info().

通过对 erl_parseAbstr 的每个注释集合应用 Fun 来更新累加器。

Fun 的第一次调用以 AccIn 作为参数,返回的累加器 AccOut 被传递给下一次调用,依此类推。最后累加器的值被返回。erl_parse 树以深度优先、从左到右的方式遍历。

此函数的链接

format_error(Message)

查看源码
-spec format_error(any()) -> [char() | list()].

使用 ErrorDescriptor 并返回描述错误的字符串。

当处理 ErrorInfo 结构时(见错误信息部分),通常会隐式调用此函数。

此函数的链接

map_anno(Fun, Abstr)

查看源代码 (自 OTP 18.0 起)
-spec map_anno(Fun, Abstr) -> NewAbstr
                  when
                      Fun :: fun((Anno) -> NewAnno),
                      Anno :: erl_anno:anno(),
                      NewAnno :: erl_anno:anno(),
                      Abstr :: erl_parse_tree() | form_info(),
                      NewAbstr :: erl_parse_tree() | form_info().

通过对 erl_parse 树的节点的每个注释集合应用 Fun 来修改 erl_parseAbstrerl_parse 树以深度优先、从左到右的方式遍历。

此函数的链接

mapfold_anno(Fun, Acc0, Abstr)

查看源代码 (自 OTP 18.0 起)
-spec mapfold_anno(Fun, Acc0, Abstr) -> {NewAbstr, Acc1}
                      when
                          Fun :: fun((Anno, AccIn) -> {NewAnno, AccOut}),
                          Anno :: erl_anno:anno(),
                          NewAnno :: erl_anno:anno(),
                          Acc0 :: term(),
                          Acc1 :: term(),
                          AccIn :: term(),
                          AccOut :: term(),
                          Abstr :: erl_parse_tree() | form_info(),
                          NewAbstr :: erl_parse_tree() | form_info().

通过对 erl_parse 树的节点的每个注释集合应用 Fun 来修改 erl_parseAbstr,同时更新累加器。

Fun 的第一次调用以 AccIn 作为第二个参数,返回的累加器 AccOut 被传递给下一次调用,依此类推。返回修改后的 erl_parse 树和累加器的最终值。erl_parse 树以深度优先、从左到右的方式遍历。

此函数的链接

new_anno(Term)

查看源代码 (自 OTP 18.0 起)
-spec new_anno(Term) -> Abstr when Term :: term(), Abstr :: erl_parse_tree() | form_info().

假设 Term 是一个与 erl_parse 树具有相同结构的项,但是当 erl_parse 树具有注释集合时,该项具有 位置

返回一个 erl_parse 树,其中每个位置 Lerl_anno:new(L) 返回的值替换。术语 Term 以深度优先、从左到右的方式遍历。

-spec normalise(AbsTerm) -> Data when AbsTerm :: abstract_expr(), Data :: term().

将项的抽象形式 AbsTerm 转换为传统的 Erlang 数据结构(即,该项本身)。 此函数是 abstract/1 的逆函数。

-spec parse_exprs(Tokens) -> {ok, ExprList} | {error, ErrorInfo}
                     when Tokens :: [token()], ExprList :: [abstract_expr()], ErrorInfo :: error_info().

Tokens 解析为好像它是一个表达式列表。

返回以下其中一项

  • {ok, ExprList} - 解析成功。ExprList 是已解析表达式的抽象形式列表。

  • {error, ErrorInfo} - 发生错误。

-spec parse_form(Tokens) -> {ok, AbsForm} | {error, ErrorInfo}
                    when Tokens :: [token()], AbsForm :: abstract_form(), ErrorInfo :: error_info().

Tokens 解析为好像它是一个形式。

返回以下其中一项

  • {ok, AbsForm} - 解析成功。AbsForm 是已解析形式的抽象形式。

  • {error, ErrorInfo} - 发生错误。

-spec parse_term(Tokens) -> {ok, Term} | {error, ErrorInfo}
                    when Tokens :: [token()], Term :: term(), ErrorInfo :: error_info().

Tokens 解析为好像它是一个项。

返回以下其中一项

  • {ok, Term} - 解析成功。Term 是对应于标记列表的 Erlang 术语。

  • {error, ErrorInfo} - 发生错误。

-spec tokens(AbsTerm) -> Tokens when AbsTerm :: abstract_expr(), Tokens :: [token()].

等效于 tokens(AbsTerm, [])

此函数的链接

tokens(AbsTerm, MoreTokens)

查看源码
-spec tokens(AbsTerm, MoreTokens) -> Tokens
                when AbsTerm :: abstract_expr(), MoreTokens :: [token()], Tokens :: [token()].

生成表示表达式抽象形式 AbsTerm 的标记列表。 (可选)附加 MoreTokens