Creates a new parser builder. Intended for use with the Compiler class, most users should prefer the free functions above for independent parsing of expressions.
| 1906 | // Intended for use with the Compiler class, most users should prefer the free |
| 1907 | // functions above for independent parsing of expressions. |
| 1908 | std::unique_ptr<ParserBuilder> NewParserBuilder(const ParserOptions& options) { |
| 1909 | return std::make_unique<google::api::expr::parser::ParserBuilderImpl>( |
| 1910 | options); |
| 1911 | } |
| 1912 | |
| 1913 | } // namespace cel |
no outgoing calls