File: expr13double.ml

package info (click to toggle)
ocaml-visitors 20180513-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,640 kB
  • sloc: ml: 4,063; makefile: 120; sh: 13
file content (10 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
open Expr12
open Expr13

let double : expr -> expr =
  let v = object
    inherit [_] map
    method! visit_EConst _env k =
      EConst (2 * k)
  end in
  v # visit_'expr ()