2003-04-01 17:32:09 -08:00
|
|
|
;(***********************************************************************)
|
|
|
|
;(* *)
|
|
|
|
;(* Objective Caml *)
|
|
|
|
;(* *)
|
|
|
|
;(* Damien Doligez, projet Moscova, INRIA Rocquencourt *)
|
|
|
|
;(* *)
|
|
|
|
;(* Copyright 2003 Institut National de Recherche en Informatique et *)
|
|
|
|
;(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
;(* under the terms of the Q Public License version 1.0. *)
|
|
|
|
;(* *)
|
|
|
|
;(***********************************************************************)
|
|
|
|
|
|
|
|
;(* $Id$ *)
|
|
|
|
|
2003-04-03 05:59:38 -08:00
|
|
|
; An emacs-lisp complement to the "-dtypes" option of ocamlc and ocamlopt.
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-07-28 11:06:49 -07:00
|
|
|
;; XEmacs compatibility
|
|
|
|
(if (and (boundp 'running-xemacs) running-xemacs)
|
|
|
|
(require 'caml-xemacs))
|
|
|
|
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
(defvar caml-types-location-re nil "Regexp to parse *.annot files.
|
|
|
|
|
|
|
|
Annotation files *.annot may be generated with the \"-dtypes\" option
|
|
|
|
of ocamlc and ocamlopt.
|
|
|
|
|
|
|
|
Their format is:
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
file ::= block *
|
|
|
|
block ::= position <SP> position <LF> annotation *
|
|
|
|
position ::= filename <SP> num <SP> num <SP> num
|
|
|
|
annotation ::= keyword open-paren <LF> <SP> <SP> data <LF> close-paren
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
<SP> is a space character (ASCII 0x20)
|
|
|
|
<LF> is a line-feed character (ASCII 0x0A)
|
|
|
|
num is a sequence of decimal digits
|
|
|
|
filename is a string with the lexical conventions of O'Caml
|
|
|
|
open-paren is an open parenthesis (ASCII 0x28)
|
|
|
|
close-paren is a closed parenthesis (ASCII 0x29)
|
|
|
|
data is any sequence of characters where <LF> is always followed by
|
|
|
|
at least two space characters.
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
- in each block, the two positions are respectively the start and the
|
|
|
|
- end of the range described by the block.
|
|
|
|
- in a position, the filename is the name of the file, the first num
|
|
|
|
is the line number, the second num is the offset of the beginning
|
|
|
|
of the line, the third num is the offset of the position itself.
|
|
|
|
- the char number within the line is the difference between the third
|
|
|
|
and second nums.
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
For the moment, the only possible keyword is \"type\"."
|
|
|
|
)
|
2003-06-12 05:52:17 -07:00
|
|
|
|
2003-04-03 05:59:38 -08:00
|
|
|
(let* ((caml-types-filename-re "\"\\(\\([^\\\"]\\|\\\\.\\)*\\)\"")
|
|
|
|
(caml-types-number-re "\\([0-9]*\\)")
|
|
|
|
(caml-types-position-re
|
|
|
|
(concat caml-types-filename-re " "
|
|
|
|
caml-types-number-re " "
|
|
|
|
caml-types-number-re " "
|
|
|
|
caml-types-number-re)))
|
2003-07-24 07:16:26 -07:00
|
|
|
(setq caml-types-location-re
|
|
|
|
(concat "^" caml-types-position-re " " caml-types-position-re)))
|
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
(defvar caml-types-expr-ovl (make-overlay 1 1))
|
2003-07-24 07:16:26 -07:00
|
|
|
|
|
|
|
(make-face 'caml-types-face)
|
|
|
|
(set-face-doc-string 'caml-types-face
|
|
|
|
"face for hilighting expressions and types")
|
|
|
|
(if (not (face-differs-from-default-p 'caml-types-face))
|
|
|
|
(set-face-background 'caml-types-face "#88FF44"))
|
|
|
|
|
|
|
|
(overlay-put caml-types-expr-ovl 'face 'caml-types-face)
|
2003-04-01 17:32:09 -08:00
|
|
|
|
2003-07-25 10:59:59 -07:00
|
|
|
|
2003-07-28 08:19:15 -07:00
|
|
|
(defvar caml-types-annotation-tree nil)
|
|
|
|
(defvar caml-types-annotation-date nil)
|
2003-07-25 10:59:59 -07:00
|
|
|
(make-variable-buffer-local 'caml-types-annotation-tree)
|
|
|
|
(make-variable-buffer-local 'caml-types-annotation-date)
|
|
|
|
|
2003-07-28 08:19:15 -07:00
|
|
|
(defvar caml-types-buffer-name "*caml-types*"
|
|
|
|
"Name of buffer for diplaying caml types")
|
|
|
|
(defvar caml-types-buffer nil
|
|
|
|
"buffer for diplaying caml types")
|
2003-07-25 10:59:59 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
(defun caml-types-show-type (arg)
|
2003-07-23 07:20:33 -07:00
|
|
|
"Show the type of expression or pattern at point.
|
|
|
|
The smallest expression or pattern that contains point is
|
|
|
|
temporarily highlighted. Its type is highlighted in the .annot
|
|
|
|
file and the mark is set to the beginning of the type.
|
|
|
|
The type is also displayed in the mini-buffer.
|
|
|
|
|
|
|
|
Hints on using the type display:
|
|
|
|
. If you want the type of an identifier, put point within any
|
|
|
|
occurrence of this identifier.
|
|
|
|
. If you want the result type of a function application, put point
|
|
|
|
at the first space after the function name.
|
|
|
|
. If you want the type of a list, put point on a bracket, on a
|
|
|
|
semicolon, or on the :: constructor.
|
|
|
|
. Even if type checking fails, you can still look at the types
|
2003-07-24 01:46:52 -07:00
|
|
|
in the file, up to where the type checker failed.
|
|
|
|
|
2003-07-28 11:06:49 -07:00
|
|
|
Types are also diplayed in the buffer *caml-types*, which buffer is
|
|
|
|
display when the commande is called with Prefix argument 4.
|
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
See also `caml-types-explore' for exploration by mouse dragging.
|
|
|
|
See `caml-types-location-re' for annotation file format.
|
|
|
|
"
|
|
|
|
(interactive "p")
|
2003-04-03 05:59:38 -08:00
|
|
|
(let* ((target-buf (current-buffer))
|
2003-04-02 08:39:59 -08:00
|
|
|
(target-file (file-name-nondirectory (buffer-file-name)))
|
|
|
|
(target-line (1+ (count-lines (point-min) (line-beginning-position))))
|
2003-04-03 05:59:38 -08:00
|
|
|
(target-bol (line-beginning-position))
|
|
|
|
(target-cnum (point))
|
2003-04-02 08:39:59 -08:00
|
|
|
(type-file (concat (file-name-sans-extension (buffer-file-name))
|
2003-07-28 08:19:15 -07:00
|
|
|
".annot")))
|
|
|
|
(caml-types-preprocess type-file)
|
|
|
|
(unless caml-types-buffer
|
|
|
|
(setq caml-types-buffer (get-buffer-create caml-types-buffer-name)))
|
2003-07-25 10:59:59 -07:00
|
|
|
(let* ((targ-loc (vector target-file target-line target-bol target-cnum))
|
|
|
|
(node (caml-types-find-location targ-loc ()
|
|
|
|
caml-types-annotation-tree)))
|
|
|
|
(cond
|
|
|
|
((null node)
|
|
|
|
(delete-overlay caml-types-expr-ovl)
|
|
|
|
(message "Point is not within a typechecked expression or pattern.")
|
2003-07-28 08:19:15 -07:00
|
|
|
; (with-current-buffer type-buf (narrow-to-region 1 1))
|
|
|
|
)
|
2003-07-25 10:59:59 -07:00
|
|
|
(t
|
|
|
|
(let ((left (caml-types-get-pos target-buf (elt node 0)))
|
|
|
|
(right (caml-types-get-pos target-buf (elt node 1)))
|
2003-07-28 08:19:15 -07:00
|
|
|
(type (elt node 2)))
|
2003-07-25 10:59:59 -07:00
|
|
|
(move-overlay caml-types-expr-ovl left right target-buf)
|
2003-07-28 08:19:15 -07:00
|
|
|
(with-current-buffer caml-types-buffer
|
|
|
|
(erase-buffer)
|
|
|
|
(insert type)
|
|
|
|
(message (format "type: %s" type)))
|
|
|
|
))))
|
2003-07-25 10:59:59 -07:00
|
|
|
(if (and (= arg 4)
|
2003-07-28 08:19:15 -07:00
|
|
|
(not (window-live-p (get-buffer-window caml-types-buffer))))
|
|
|
|
(display-buffer caml-types-buffer))
|
2003-07-25 10:59:59 -07:00
|
|
|
(unwind-protect
|
|
|
|
(sit-for 60)
|
|
|
|
(delete-overlay caml-types-expr-ovl))))
|
|
|
|
|
2003-07-28 08:19:15 -07:00
|
|
|
(defun caml-types-preprocess (type-file)
|
2003-07-25 12:12:50 -07:00
|
|
|
(let* ((type-date (nth 5 (file-attributes type-file)))
|
|
|
|
(target-file (file-name-nondirectory (buffer-file-name)))
|
|
|
|
(target-date (nth 5 (file-attributes target-file))))
|
2003-07-25 10:59:59 -07:00
|
|
|
(unless (and caml-types-annotation-tree
|
|
|
|
(not (caml-types-date< caml-types-annotation-date type-date)))
|
|
|
|
(if (caml-types-date< type-date target-date)
|
|
|
|
(error (format "%s is more recent than %s" target-file type-file)))
|
2003-07-28 08:19:15 -07:00
|
|
|
(message "Reading annotation file...")
|
|
|
|
(let* ((type-buf (caml-types-find-file type-file))
|
|
|
|
(tree (with-current-buffer type-buf
|
2003-07-25 10:59:59 -07:00
|
|
|
(widen)
|
|
|
|
(goto-char (point-min))
|
2003-07-25 12:12:50 -07:00
|
|
|
(caml-types-build-tree target-file))))
|
2003-07-25 10:59:59 -07:00
|
|
|
(setq caml-types-annotation-tree tree
|
|
|
|
caml-types-annotation-date type-date)
|
2003-07-28 08:19:15 -07:00
|
|
|
(kill-buffer type-buf)
|
|
|
|
(message ""))
|
|
|
|
)))
|
2003-04-02 08:39:59 -08:00
|
|
|
|
|
|
|
(defun caml-types-date< (date1 date2)
|
|
|
|
(or (< (car date1) (car date2))
|
|
|
|
(and (= (car date1) (car date2))
|
|
|
|
(< (nth 1 date1) (nth 1 date2)))))
|
|
|
|
|
2003-07-25 10:59:59 -07:00
|
|
|
; tree of intervals
|
|
|
|
; each node is a vector
|
|
|
|
; [ pos-left pos-right type-info child child child... ]
|
|
|
|
; type-info =
|
|
|
|
; () if this node does not correspond to an annotated interval
|
|
|
|
; (type-start . type-end) address of the annotation in the .annot file
|
|
|
|
|
2003-07-28 08:19:15 -07:00
|
|
|
(defun caml-types-hcons (elem table)
|
|
|
|
(or (cl-gethash elem table) (cl-puthash elem elem table) elem))
|
|
|
|
|
2003-07-25 12:12:50 -07:00
|
|
|
(defun caml-types-build-tree (target-file)
|
2003-07-25 10:59:59 -07:00
|
|
|
(let ((stack ())
|
|
|
|
(accu ())
|
2003-07-28 08:19:15 -07:00
|
|
|
(table (make-hash-table :test 'equal))
|
2003-07-25 10:59:59 -07:00
|
|
|
(type-info ()))
|
2003-07-24 01:46:52 -07:00
|
|
|
(while (re-search-forward caml-types-location-re () t)
|
2003-07-25 10:59:59 -07:00
|
|
|
(let ((l-file (file-name-nondirectory (match-string 1)))
|
|
|
|
(l-line (string-to-int (match-string 3)))
|
|
|
|
(l-bol (string-to-int (match-string 4)))
|
|
|
|
(l-cnum (string-to-int (match-string 5)))
|
|
|
|
(r-file (file-name-nondirectory (match-string 6)))
|
|
|
|
(r-line (string-to-int (match-string 8)))
|
|
|
|
(r-bol (string-to-int (match-string 9)))
|
|
|
|
(r-cnum (string-to-int (match-string 10))))
|
2003-07-25 12:12:50 -07:00
|
|
|
(unless (not (and (string= l-file target-file)
|
|
|
|
(string= r-file target-file)))
|
|
|
|
(while (and (re-search-forward "^" () t)
|
|
|
|
(not (looking-at "type"))
|
|
|
|
(not (looking-at "\\\"")))
|
|
|
|
(forward-char 1))
|
|
|
|
(setq type-info
|
|
|
|
(if (looking-at
|
2003-07-28 08:19:15 -07:00
|
|
|
"^type(\n\\( \\([^\n)]\\|.)\\|\n[^)]\\)*\\)\n)")
|
|
|
|
(caml-types-hcons (match-string 1) table)))
|
2003-07-25 12:12:50 -07:00
|
|
|
(setq accu ())
|
|
|
|
(while (and stack
|
|
|
|
(caml-types-pos-contains l-cnum r-cnum (car stack)))
|
|
|
|
(setq accu (cons (car stack) accu))
|
|
|
|
(setq stack (cdr stack)))
|
|
|
|
(let* ((left-pos (vector l-file l-line l-bol l-cnum))
|
|
|
|
(right-pos (vector r-file r-line r-bol r-cnum))
|
|
|
|
(node (caml-types-make-node left-pos right-pos type-info
|
|
|
|
accu)))
|
|
|
|
(setq stack (cons node stack))))))
|
2003-07-25 10:59:59 -07:00
|
|
|
(if (null stack)
|
2003-07-25 14:51:51 -07:00
|
|
|
(error "no annotations found for this source file")
|
2003-07-25 10:59:59 -07:00
|
|
|
(let* ((left-pos (elt (car (last stack)) 0))
|
|
|
|
(right-pos (elt (car stack) 1)))
|
|
|
|
(if (null (cdr stack))
|
|
|
|
(car stack)
|
|
|
|
(caml-types-make-node left-pos right-pos () (nreverse stack)))))))
|
|
|
|
|
|
|
|
(defun caml-types-make-node (left-pos right-pos type-info children)
|
|
|
|
(let ((result (make-vector (+ 3 (length children)) ()))
|
|
|
|
(i 3))
|
|
|
|
(aset result 0 left-pos)
|
|
|
|
(aset result 1 right-pos)
|
|
|
|
(aset result 2 type-info)
|
|
|
|
(while children
|
|
|
|
(aset result i (car children))
|
|
|
|
(setq children (cdr children))
|
|
|
|
(setq i (1+ i)))
|
|
|
|
result))
|
|
|
|
|
|
|
|
(defun caml-types-pos-contains (l-cnum r-cnum node)
|
|
|
|
(and (<= l-cnum (elt (elt node 0) 3))
|
|
|
|
(>= r-cnum (elt (elt node 1) 3))))
|
|
|
|
|
|
|
|
(defun caml-types-find-location (targ-pos curr node)
|
2003-07-25 12:12:50 -07:00
|
|
|
(if (not (caml-types-pos-inside targ-pos node))
|
|
|
|
curr
|
|
|
|
(if (elt node 2)
|
|
|
|
(setq curr node))
|
|
|
|
(let ((i (caml-types-search node targ-pos)))
|
|
|
|
(if (and (> i 3)
|
|
|
|
(caml-types-pos-inside targ-pos (elt node (1- i))))
|
|
|
|
(caml-types-find-location targ-pos curr (elt node (1- i)))
|
2003-07-25 10:59:59 -07:00
|
|
|
curr))))
|
|
|
|
|
2003-07-25 12:12:50 -07:00
|
|
|
; trouve le premier fils qui commence apres la position
|
|
|
|
; ou (length node) si tous commencent avant
|
|
|
|
(defun caml-types-search (node pos)
|
2003-07-25 12:23:28 -07:00
|
|
|
(let ((min 3)
|
|
|
|
(max (length node))
|
|
|
|
med)
|
|
|
|
(while (< min max)
|
|
|
|
(setq med (/ (+ min max) 2))
|
|
|
|
(if (caml-types-pos<= (elt (elt node med) 0) pos)
|
|
|
|
(setq min (1+ med))
|
|
|
|
(setq max med)))
|
|
|
|
min))
|
2003-07-25 12:12:50 -07:00
|
|
|
|
2003-07-25 10:59:59 -07:00
|
|
|
(defun caml-types-pos-inside (pos node)
|
|
|
|
(let ((left-pos (elt node 0))
|
|
|
|
(right-pos (elt node 1)))
|
|
|
|
(and (caml-types-pos<= left-pos pos)
|
|
|
|
(caml-types-pos> right-pos pos))))
|
|
|
|
|
|
|
|
(defun caml-types-find-interval (buf targ-pos node)
|
|
|
|
(let ((nleft (elt node 0))
|
|
|
|
(nright (elt node 1))
|
|
|
|
(left ())
|
|
|
|
(right ())
|
2003-07-25 14:51:51 -07:00
|
|
|
i)
|
2003-07-25 10:59:59 -07:00
|
|
|
(cond
|
|
|
|
((not (caml-types-pos-inside targ-pos node))
|
|
|
|
(if (not (caml-types-pos<= nleft targ-pos))
|
|
|
|
(setq right nleft))
|
|
|
|
(if (not (caml-types-pos> nright targ-pos))
|
|
|
|
(setq left nright)))
|
|
|
|
(t
|
|
|
|
(setq left nleft
|
|
|
|
right nright)
|
2003-07-25 12:12:50 -07:00
|
|
|
(setq i (caml-types-search node targ-pos))
|
2003-07-25 10:59:59 -07:00
|
|
|
(if (< i (length node))
|
|
|
|
(setq right (elt (elt node i) 0)))
|
|
|
|
(if (> i 3)
|
|
|
|
(setq left (elt (elt node (1- i)) 1)))))
|
|
|
|
(cons (if left
|
|
|
|
(caml-types-get-pos buf left)
|
|
|
|
(with-current-buffer buf (point-min)))
|
|
|
|
(if right
|
|
|
|
(caml-types-get-pos buf right)
|
|
|
|
(with-current-buffer buf (point-max))))))
|
2003-04-03 05:59:38 -08:00
|
|
|
|
|
|
|
|
|
|
|
;; Warning: these comparison functions are not symmetric.
|
|
|
|
;; The first argument determines the format:
|
|
|
|
;; when its file component is empty, only the cnum is compared.
|
|
|
|
|
2003-07-25 10:59:59 -07:00
|
|
|
(defun caml-types-pos<= (pos1 pos2)
|
|
|
|
(let ((file1 (elt pos1 0))
|
|
|
|
(line1 (elt pos1 1))
|
|
|
|
(bol1 (elt pos1 2))
|
|
|
|
(cnum1 (elt pos1 3))
|
|
|
|
(file2 (elt pos2 0))
|
|
|
|
(line2 (elt pos2 1))
|
|
|
|
(bol2 (elt pos2 2))
|
|
|
|
(cnum2 (elt pos2 3)))
|
|
|
|
(if (string= file1 "")
|
|
|
|
(<= cnum1 cnum2)
|
|
|
|
(and (string= file1 file2)
|
|
|
|
(or (< line1 line2)
|
|
|
|
(and (= line1 line2)
|
|
|
|
(<= (- cnum1 bol1) (- cnum2 bol2))))))))
|
2003-04-03 05:59:38 -08:00
|
|
|
|
2003-07-25 10:59:59 -07:00
|
|
|
(defun caml-types-pos> (pos1 pos2)
|
|
|
|
(let ((file1 (elt pos1 0))
|
|
|
|
(line1 (elt pos1 1))
|
|
|
|
(bol1 (elt pos1 2))
|
|
|
|
(cnum1 (elt pos1 3))
|
|
|
|
(file2 (elt pos2 0))
|
|
|
|
(line2 (elt pos2 1))
|
|
|
|
(bol2 (elt pos2 2))
|
|
|
|
(cnum2 (elt pos2 3)))
|
|
|
|
(if (string= file1 "")
|
|
|
|
(> cnum1 cnum2)
|
|
|
|
(and (string= file1 file2)
|
|
|
|
(or (> line1 line2)
|
|
|
|
(and (= line1 line2)
|
|
|
|
(> (- cnum1 bol1) (- cnum2 bol2))))))))
|
2003-07-24 01:46:52 -07:00
|
|
|
|
2003-07-25 10:59:59 -07:00
|
|
|
(defun caml-types-get-pos (buf pos)
|
2003-04-02 08:39:59 -08:00
|
|
|
(save-excursion
|
|
|
|
(set-buffer buf)
|
2003-07-25 10:59:59 -07:00
|
|
|
(goto-line (elt pos 1))
|
|
|
|
(forward-char (- (elt pos 3) (elt pos 2)))
|
2003-04-02 08:39:59 -08:00
|
|
|
(point)))
|
2003-04-03 05:59:38 -08:00
|
|
|
|
|
|
|
; find-file-read-only-noselect seems to be missing from emacs...
|
|
|
|
(defun caml-types-find-file (name)
|
2003-07-24 01:46:52 -07:00
|
|
|
(let (buf)
|
|
|
|
(cond
|
|
|
|
((setq buf (get-file-buffer name))
|
|
|
|
(unless (verify-visited-file-modtime buf)
|
|
|
|
(if (buffer-modified-p buf)
|
|
|
|
(find-file-noselect name)
|
|
|
|
(with-current-buffer buf (revert-buffer t t)))
|
|
|
|
))
|
|
|
|
((and (file-readable-p name)
|
|
|
|
(setq buf (find-file-noselect name)))
|
|
|
|
(with-current-buffer buf (toggle-read-only 1))
|
|
|
|
)
|
|
|
|
(t
|
|
|
|
(error "No annotation file. You may compile with \"-dtypes\" option"))
|
|
|
|
)
|
|
|
|
buf))
|
|
|
|
|
2003-07-28 11:06:49 -07:00
|
|
|
|
2003-07-24 01:46:52 -07:00
|
|
|
(defun caml-types-explore (event)
|
|
|
|
"Explore type annotations by mouse dragging.
|
|
|
|
|
|
|
|
The expression under the mouse is highlighted
|
|
|
|
and its type is displayed in the minibuffer, until the move is released."
|
|
|
|
(interactive "e")
|
|
|
|
(set-buffer (window-buffer (posn-window (event-start event))))
|
|
|
|
(let* ((target-buf (current-buffer))
|
|
|
|
(target-file (file-name-nondirectory (buffer-file-name)))
|
|
|
|
(type-file (concat (file-name-sans-extension (buffer-file-name))
|
|
|
|
".annot"))
|
|
|
|
(target-line) (target-bol)
|
2003-07-25 10:59:59 -07:00
|
|
|
target-pos
|
2003-07-28 08:19:15 -07:00
|
|
|
Left Right limits cnum node mes type
|
2003-07-25 10:59:59 -07:00
|
|
|
(tree caml-types-annotation-tree)
|
2003-07-24 01:46:52 -07:00
|
|
|
)
|
2003-07-28 08:19:15 -07:00
|
|
|
(caml-types-preprocess type-file)
|
|
|
|
(unless caml-types-buffer
|
|
|
|
(setq caml-types-buffer (get-buffer-create caml-types-buffer-name)))
|
2003-07-25 10:59:59 -07:00
|
|
|
; (message "Drag the mouse to explore types")
|
2003-07-24 01:46:52 -07:00
|
|
|
(unwind-protect
|
|
|
|
(track-mouse
|
|
|
|
(while (and event
|
|
|
|
(integer-or-marker-p
|
2003-07-25 10:59:59 -07:00
|
|
|
(setq cnum (posn-point (event-end event)))))
|
|
|
|
(if (and limits (>= cnum (car limits)) (< cnum (cdr limits)))
|
2003-07-24 01:46:52 -07:00
|
|
|
(message mes)
|
2003-07-25 10:59:59 -07:00
|
|
|
(setq target-bol
|
2003-07-28 11:06:49 -07:00
|
|
|
(save-excursion (goto-char cnum)
|
|
|
|
(line-beginning-position)))
|
2003-07-24 01:46:52 -07:00
|
|
|
(setq target-line
|
|
|
|
(1+ (count-lines (point-min) target-bol)))
|
2003-07-25 10:59:59 -07:00
|
|
|
(setq target-pos (vector target-file target-line target-bol cnum))
|
2003-07-24 01:46:52 -07:00
|
|
|
(save-excursion
|
2003-07-25 10:59:59 -07:00
|
|
|
(setq node (caml-types-find-location target-pos () tree))
|
2003-07-28 08:19:15 -07:00
|
|
|
(set-buffer caml-types-buffer)
|
|
|
|
(erase-buffer)
|
2003-07-24 01:46:52 -07:00
|
|
|
(cond
|
2003-07-25 10:59:59 -07:00
|
|
|
(node
|
|
|
|
(setq Left (caml-types-get-pos target-buf (elt node 0)))
|
|
|
|
(setq Right (caml-types-get-pos target-buf (elt node 1)))
|
|
|
|
(move-overlay caml-types-expr-ovl Left Right target-buf)
|
|
|
|
(setq limits (caml-types-find-interval target-buf target-pos
|
|
|
|
node))
|
2003-07-28 08:19:15 -07:00
|
|
|
(setq type (elt node 2))
|
2003-07-24 01:46:52 -07:00
|
|
|
)
|
|
|
|
(t
|
|
|
|
(delete-overlay caml-types-expr-ovl)
|
2003-07-28 08:19:15 -07:00
|
|
|
(setq type "*no type information*")
|
2003-07-25 10:59:59 -07:00
|
|
|
(setq limits (caml-types-find-interval target-buf target-pos
|
|
|
|
tree))
|
2003-07-28 08:19:15 -07:00
|
|
|
))
|
|
|
|
(message (format "type: %s" type))
|
|
|
|
(insert type)
|
|
|
|
))
|
2003-07-24 01:46:52 -07:00
|
|
|
(setq event (read-event))
|
|
|
|
(unless (mouse-movement-p event) (setq event nil))
|
|
|
|
)
|
|
|
|
)
|
|
|
|
(delete-overlay caml-types-expr-ovl))
|
|
|
|
))
|
|
|
|
|
2003-07-23 07:20:33 -07:00
|
|
|
(provide 'caml-types)
|