()
| 26 | |
| 27 | impl MeaningOfLifeFunction { |
| 28 | pub(super) fn new() -> Rc<Self> { |
| 29 | Rc::from(Self { |
| 30 | metadata: CallableMetadataBuilder::new("MEANING_OF_LIFE") |
| 31 | .with_return_type(ExprType::Integer) |
| 32 | .with_syntax(&[(&[], None)]) |
| 33 | .test_build(), |
| 34 | }) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | impl Callable for MeaningOfLifeFunction { |
nothing calls this directly
no test coverage detected