[][src]Function rsc::parser::parse_no_preprocess

pub fn parse_no_preprocess(tokens: &[Token]) -> Result<Expr, ParserError>

Same as parse, except this does not automatically run preprocess. There are a few reasons one may use this function:

  • Performance or timing
  • AST will have identifiers that act as functions
  • You have your own preprocess function If you are not sure, use default parse instead.