This file is indexed.

/usr/lib/mlton/sml/mllpt-lib/antlr-tokens-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
20
(* antlr-tokens-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 generated tokens module, for ml-antlr
 *)

signature ANTLR_TOKENS = sig

  type token
  
  val allToks : token list
  val isKW    : token -> bool
  val isEOF   : token -> bool
  val toString : token -> string

end