~ubuntu-branches/ubuntu/maverick/coccinelle/maverick

« back to all changes in this revision

Viewing changes to parsing_c/compare_c.mli

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2009-08-10 01:01:24 UTC
  • mfrom: (7.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090810010124-9fn4c8m93ic60fqx
Tags: 0.1.9.deb-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/control: build-depend on python2.6-dev,
    set XB-Python-Version to 2.6
* New upstream (Debian) packaging applied fix for
  LP: #410907 (see changelog entry below)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
open Common
2
 
 
3
1
type compare_result = 
4
2
  | Correct 
5
3
  | Pb of string
9
7
(* the string list is the output of diff *)
10
8
 
11
9
val compare_ast : 
12
 
 filename -> filename -> compare_result * string list 
13
 
 
 
10
 Common.filename -> Common.filename -> compare_result * string list 
14
11
val compare_token :
15
 
  filename -> filename -> compare_result * string list
 
12
  Common.filename -> Common.filename -> compare_result * string list
16
13
 
17
 
val compare_default : filename -> filename -> compare_result * string list
 
14
val compare_default : 
 
15
  Common.filename -> Common.filename -> compare_result * string list
18
16
 
19
17
 
20
18
val compare_result_to_string : compare_result * string list -> string