This file is indexed.

/usr/share/doc/jflex/examples/java/README is in jflex 1.4.3-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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
This directory contains a scanner and parser for the Java programming language.

You need the parser generator CUP v0.10j (or newer) for the parser to work.
Use the Makefile to generate the lexer and parser, or type:

jflex unicode.flex
jflex java.flex
java java_cup.Main -interface < java12.cup
javac JavaParser.java TestLexer.java


The parser can be tested with:
java JavaParser <inputfiles>

The scanner (without parser attached) can be test with:
java TestLexer <inputfiles>


files:

unicode.flex
  JFlex specification for the Unicode preprocessing phase
  (see section 3.3 of the Java Language Specification).
  Demonstrates how to implement a FilterReader with JFlex.

java.flex
  JFlex specification for the "real" Java 1.2 lexer.

java12.cup
  CUP specification for the Java 1.2 parser
  Copyright (C) 1998 by C. Scott Ananian <cananian@alumni.princeton.edu>
  (with small modifications to interface with the Lexer)

JavaParser.java
  a simple main class to run the parser (no other useful output though)

TestLexer.java
  a simple test driver for the scanner, produces debug output

lexer-output.good
  lexer output for input file TestLexer.java for testing