1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
(* Not a string as such, more like a symbol *)
(* type *)
type textMark = string;;
(* /type *)
(* type *)
type textTag = string;;
(* /type *)
##ifdef CAMLTK
(* type *)
type textModifier =
| CharOffset of int (* tk keyword: +/- Xchars *)
| LineOffset of int (* tk keyword: +/- Xlines *)
| LineStart (* tk keyword: linestart *)
| LineEnd (* tk keyword: lineend *)
| WordStart (* tk keyword: wordstart *)
| WordEnd (* tk keyword: wordend *)
;;
(* /type *)
(* type *)
type textIndex =
| TextIndex of index * textModifier list
| TextIndexNone
;;
(* /type *)
##else
(* type *)
type textModifier = [
| `Char of int (* tk keyword: +/- Xchars *)
| `Line of int (* tk keyword: +/- Xlines *)
| `Linestart (* tk keyword: linestart *)
| `Lineend (* tk keyword: lineend *)
| `Wordstart (* tk keyword: wordstart *)
| `Wordend (* tk keyword: wordend *)
]
;;
(* /type *)
(* type *)
type textIndex = text_index * textModifier list
;;
(* /type *)
##endif
|