File: xstrp4_here_types.ml

package info (click to toggle)
xstrp4 1.8.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 128 kB
  • sloc: ml: 249; makefile: 119
file content (20 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(* $Id$
 * ----------------------------------------------------------------------
 *
 *)

open Camlp4
open PreCast
open Ast

type here_clause =
    Literal of (string * (Lexing.position * Lexing.position))
  | Variable of (ident * string * (Lexing.position * Lexing.position))
      (* [ M1; M2; ...; value ],f,pos1,pos2 
       * <==> M1.M2. ... .value with format f from position pos1 to pos2
       *)
  | Textend
;;