Skip to main content

Module parser

Module parser 

Source
Expand description

C言語パーサー

tinyccのparser部分に相当。再帰下降パーサーで実装。

Structs§

MacroContext
マクロ展開コンテキスト
ParseStats
パース結果に付随する統計情報
Parser
パーサー

Functions§

parse_block_items_from_tokens_ref_with_generic_params
トークン列を複数のブロック項目としてパース(generic_params 付き)
parse_block_items_from_tokens_ref_with_stats
トークン列を複数のブロック項目としてパース
parse_expression_from_tokens
トークン列から式をパース
parse_expression_from_tokens_ref
トークン列から式をパース(参照ベース版)
parse_expression_from_tokens_ref_with_generic_params
トークン列から式をパース(generic_params 付き)
parse_expression_from_tokens_ref_with_stats
トークン列から式をパース(統計情報付き・参照ベース版)
parse_statement_from_tokens_ref
トークン列を文としてパース(参照ベース版)
parse_statement_from_tokens_ref_with_generic_params
トークン列を文としてパース(generic_params 付き)
parse_statement_from_tokens_ref_with_stats
トークン列を文としてパース(統計情報付き・参照ベース版)
parse_struct_members_from_tokens_ref
トークン列を struct メンバー宣言の連続としてパースする。
parse_type_from_string
型文字列から TypeName をパース