This file is indexed.

/usr/lib/mlton/sml/mllpt-lib/antlr-lexer-sig.sml is in mlton-basis 20130715-3.

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
(* antlr-lexer-sig.sml
 *
 * COPYRIGHT (c) 2006
 * John Reppy (http://www.cs.uchicago.edu/~jhr)
 * Aaron Turon (http://www.cs.uchicago.edu/~adrassi)
 * All rights reserved.
 *
 * Signature for the lexer argument to parser functors generated
 * by ml-antlr.
 *)

signature ANTLR_LEXER = sig

  type strm
  type pos = AntlrStreamPos.pos

  val getPos : strm -> pos

end