1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::interner::Interner;
use crate::pipeline::ConstTree;

mod parse_float;
mod parse_uint;
mod to_string;

pub fn conv(i: &Interner) -> ConstTree {
  ConstTree::tree([
    (i.i("parse_float"), ConstTree::xfn(parse_float::ParseFloat1)),
    (i.i("parse_uint"), ConstTree::xfn(parse_uint::ParseUint1)),
    (i.i("to_string"), ConstTree::xfn(to_string::ToString1)),
  ])
}