This file is indexed.

/usr/share/doc/jflex/examples/interpreter/build.xml 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
<project name="interpreter" default="run">

  <taskdef classname="JFlex.anttask.JFlexTask" name="jflex" />
  <taskdef classname="java_cup.AntTask" name="cup" />

  <target name="build" depends="realclean,compile" />

  <target name="run" depends="compile">
    <java classname="Main"> <arg line="example.as"/> </java>
  </target>

  <target name="compile" depends="jflex,cup">
    <javac srcdir="." destdir="." />
  </target>

  <target name="jflex">
    <jflex file="scanner.flex" />
  </target>

  <target name="cup">
    <cup file="parser.cup" interface="yes" dir="."/>
  </target>

  <target name="genclean">
    <delete file="Yylex.java"/>
    <delete file="sym.java" />
    <delete file="parser.java" />
  </target>

  <target name="clean">
    <delete>
      <fileset dir="." includes="**/*~"/>
      <fileset dir="." includes="**/*.class"/>
    </delete>
  </target>

  <target name="realclean" depends="clean,genclean" />
</project>