CodeTools::AST << {

NumericLiteral < Node {
  node_type numeric
  field value

  bytecode: |g| {
    pos(g)

    g.push_literal(self.value)
  }
}

}