File: expr_info_mapreduce.ml

package info (click to toggle)
ocaml-visitors 20251114-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,944 kB
  • sloc: ml: 4,035; makefile: 42; sh: 18
file content (8 lines) | stat: -rw-r--r-- 175 bytes parent folder | download
1
2
3
4
5
6
7
8
type 'info node =
  | EConst of int
  | EAdd of 'info expr * 'info expr

and 'info expr =
  { info: 'info; node: 'info node }

[@@deriving visitors { variety = "mapreduce" }]