Skip to main content

Module parser

Module parser 

Source
Expand description

CMake parser and AST definitions. Parser entry points for CMake source text.

The parser is a hand-written recursive-descent implementation over a streaming scanner. crate::parser::ast contains the public AST returned by crate::parser::parse().

Modules§

ast
AST types returned by crate::parser::parse.

Functions§

parse
Parse CMake source text into an AST File.