This file is indexed.

/usr/lib/ats-anairiats-0.2.11/libats/lex/lexing.sats is in ats-lang-anairiats 0.2.11-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
(***********************************************************************)
(*                                                                     *)
(*                         Applied Type System                         *)
(*                                                                     *)
(*                              Hongwei Xi                             *)
(*                                                                     *)
(***********************************************************************)

(*
** ATS/Anairiats - Unleashing the Potential of Types!
**
** Copyright (C) 2002-2008 Hongwei Xi, Boston University
**
** All rights reserved
**
** ATS is free software;  you can  redistribute it and/or modify it under
** the terms of the GNU LESSER GENERAL PUBLIC LICENSE as published by the
** Free Software Foundation; either version 2.1, or (at your option)  any
** later version.
** 
** ATS is distributed in the hope that it will be useful, but WITHOUT ANY
** WARRANTY; without  even  the  implied  warranty  of MERCHANTABILITY or
** FITNESS FOR A PARTICULAR PURPOSE.  See the  GNU General Public License
** for more details.
** 
** You  should  have  received  a  copy of the GNU General Public License
** along  with  ATS;  see  the  file  COPYING.  If not, write to the Free
** Software Foundation, 51  Franklin  Street,  Fifth  Floor,  Boston,  MA
** 02110-1301, USA.
*)

(* ****** ****** *)

//
// Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu)
// Time: July 2007
//

(* ****** ****** *)

%{#
#ifndef ATS_LIBATS_LEX_LEXING_SATS
#define ATS_LIBATS_LEX_LEXING_SATS
typedef struct {
  ats_clo_ptr_type free ;
  ats_clo_ptr_type getc ;
} atslex_infile_t ; // end of [typedef]
#endif // end of [ATS_LIBATS_LEX_LEXING_SATS]
%} // end of [%{#]

(* ****** ****** *)

abstype accept_table_t // boxed type

fun accept_table_get
  (acctbl: accept_table_t, nstate: int): int (* irule *)

fun __accept_table_make (nton: int) (nitm: int) (s: string): accept_table_t

fun __accept_table_free (acctbl: accept_table_t): void

//

abstype transition_table_t // boxed type

fun __transition_table_make (n: int) (s: string): transition_table_t

fun __transition_table_free (transtbl: transition_table_t): void

fun transition_table_get // c >= -1
  (transtbl: transition_table_t, nstate: int, c: int): int (* nstate *)

(* ****** ****** *)

abstype position_t // boxed type

typedef lint = int_long_t0ype
fun position_line (p: position_t):<> int
fun position_loff (p: position_t):<> int
fun position_toff (p: position_t):<> lint

(* ****** ****** *)

fun lt_position_position (p1: position_t, p2: position_t):<> bool
overload < with lt_position_position

fun lte_position_position (p1: position_t, p2: position_t):<> bool
overload <= with lte_position_position

fun eq_position_position (p1: position_t, p2: position_t):<> bool
overload = with eq_position_position

fun neq_position_position (p1: position_t, p2: position_t):<> bool
overload <> with neq_position_position

(* ****** ****** *)

fun fprint_position {m:file_mode}
  (pf: file_mode_lte (m, w) | fil: &FILE m, pos: position_t): void

overload fprint with fprint_position

fun print_position (pos: position_t): void = "lexing_print_position"
fun prerr_position (pos: position_t): void = "lexing_prerr_position"

overload print with print_position
overload prerr with prerr_position

(* ****** ****** *)
//
// HX: flat type for the input file
//
absviewt@ype infile_t
  (v:view) = $extype "atslex_infile_t"
// end of [infile_t]

fun infile_free {v:view}
  (pf: v | f: infile_t v): void = "lexing_infile_free"
fun infile_getc {v:view}
  (pf: !v | f: !infile_t v): int = "lexing_infile_getc"

fun infile_make_string (inp: string): [v:view] (v | infile_t v)
(*
** HX-2011-12-16: [inp] is freed when [infile] is freed
*)
fun infile_make_strptr (inp: strptr1): [v:view] (v | infile_t v)

fun infile_make_file
  {m:file_mode} {l:addr} (
    pf_fil: FILE m @ l, pf_mod: file_mode_lte (m, r) | fil: ptr l
  ) : [v:view] (v | infile_t v)
// end of [infile_make_file]

fun infile_make_stdin (): [v:view] (v | infile_t v)

(* ****** ****** *)

absviewt@ype lexbuf_t (* implemented externally in lexing.dats*)

(* ****** ****** *)

(*
** HX: this one is implemented in C
*)
fun lexbuf_curpos_fprint
  (out: FILEref, lb: &lexbuf_t): void = "lexbuf_curpos_fprint"
// end of [lexbuf_curpos_fprint]

fun lexbuf_curpos_prerr (lb: &lexbuf_t): void

(* ****** ****** *)

// implemented externally in [libats/lex/lexing.dats]
fun lexbuf_fstpos_get (lb: &lexbuf_t): position_t = "lexbuf_fstpos_get"
fun lexbuf_fstpos_set (lb: &lexbuf_t): void = "lexbuf_fstpos_set"

fun lexbuf_lstpos_get (lb: &lexbuf_t): position_t = "lexbuf_lstpos_get"
fun lexbuf_lstpos_set (lb: &lexbuf_t): void = "lexbuf_lstpos_set"

fun lexbuf_curpos_get
  (lb: &lexbuf_t): position_t = "lexbuf_curpos_get"
fun lexbuf_curpos_set (lb: &lexbuf_t): void = "lexbuf_curpos_set"

fun lexbuf_size_get (lb: &lexbuf_t): Nat = "lexbuf_size_get"
fun lexbuf_char_next (lb: &lexbuf_t): int = "lexbuf_char_next"
fun lexbuf_is_eof (lb: &lexbuf_t): bool = "lexbuf_is_eof"

fun lexing_engine_lexbuf (
  lb: &lexbuf_t, transtbl: transition_table_t, acctbl: accept_table_t
) : int (*nstate*)
  = "lexing_engine_lexbuf"
// end of [fun]

(* ****** ****** *)
//
// This function makes a lexbuf from an infile.
//
fun lexbuf_make_infile
  {v:view} (
  pf: v | f: infile_t v
) : [l:addr] (lexbuf_t @ l | ptr l)
  = "lexbuf_make_infile"
// end of [fun]

(* ****** ****** *)
//
// This function frees a lexbuf.
//
fun lexbuf_free
  {l:addr} (pf: lexbuf_t @ l | p: ptr l): void = "lexbuf_free"
// end of [lexbuf_free]

(* ****** ****** *)

// This function gets the default lexbuf.
fun lexing_lexbuf_get (): [l:addr] (lexbuf_t @ l | ptr l)
  = "lexing_lexbuf_get"

// This function sets the default lexbuf.
fun lexing_lexbuf_set {l:addr} (pf: lexbuf_t @ l | p: ptr l): void
  = "lexing_lexbuf_set"

// This function frees the default lexbuf.
fun lexing_lexbuf_free (): void = "lexing_lexbuf_free"

fun lexing_engine
  (transtbl: transition_table_t, acctbl: accept_table_t): int
  = "lexing_engine"

(* ****** ****** *)

fun lexeme_get_lexbuf (lb: &lexbuf_t, index: int): char
  = "lexeme_get_lexbuf"
fun lexeme_get (index: int): char = "lexeme_get"

fun lexeme_set_lexbuf (lb: &lexbuf_t, index: int, c: char): void
  = "lexeme_set_lexbuf"
fun lexeme_set (index: int, c: char): void = "lexeme_set"
//
fun lexeme_strptr_lexbuf
  (lb: &lexbuf_t): strptr1 = "lexeme_strptr_lexbuf"
fun lexeme_strptr (): strptr1
fun lexeme_string (): string = "lexeme_string"
//
(* ****** ****** *)
//
// This function is for testing whether the lexbuf reaches the end.
//
fun lexing_is_eof (): bool = "lexing_is_eof"
//
(* ****** ****** *)

fun lexing_fstpos_get (): position_t = "lexing_fstpos_get"
fun lexing_lstpos_get (): position_t = "lexing_lstpos_get"
fun lexing_curpos_get (): position_t = "lexing_curpos_get"

(* ****** ****** *)

exception LexingErrorException

// This function reports a lexing error; it raises the exception
// [LexingErrorException]
fun lexing_error {a:viewt@ype} (): a

(* ****** ****** *)

(* end of [lexing.sats] *)