Configuration for cel::TypeChecker to enable the math extension declarations.
| 323 | |
| 324 | // Configuration for cel::TypeChecker to enable the math extension declarations. |
| 325 | CheckerLibrary MathCheckerLibrary(int version) { |
| 326 | return { |
| 327 | .id = kMathExtensionName, |
| 328 | .configure = |
| 329 | [version](TypeCheckerBuilder& builder) { |
| 330 | return AddMathExtensionDeclarations(builder, version); |
| 331 | }, |
| 332 | }; |
| 333 | } |
| 334 | |
| 335 | } // namespace cel::extensions |
no test coverage detected