This file is indexed.

/usr/share/doc/jflex/examples/interpreter/Main.java is in jflex 1.6.1-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
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
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright (C) 2001       Gerwin Klein <lsf@jflex.de>                    *
 * Copyright (C) 2001       Bernhard Rumpe <rumpe@in.tum.de>               *
 * All rights reserved.                                                    *
 *                                                                         *
 * License: BSD                                                            *
 *                                                                         *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


import java.io.*;

/**
 * Main program of the interpreter for the AS programming language.
 * Based on JFlex/CUP.
 * 
 * Steps:
 * - scanning                               (Yylex)
 * - context free parsing and AST building  (yyparse)
 * - build up symbol table                  (setSymtabs)
 * - check context conditions               (checkcontext)
 * - prepare interpretation                 (prepInterp)
 * - start interpretation                   (interpret)
 */ 
public class Main {

  public static void main(String [] args) throws Exception {
    Reader reader = null;
    
    if (args.length == 1) {
      File input = new File(args[0]);
      if (!input.canRead()) {
        System.out.println("Error: could not read ["+input+"]");
      }
      reader = new FileReader(input);
    }
    else {  
     reader = new InputStreamReader(System.in);
    }

    Yylex scanner = new Yylex(reader);   // create scanner
    SymTab symtab = new SymTab();        // set global symbol table    
    scanner.setSymtab(symtab);

    parser parser = new parser(scanner); // create parser
    Tprogram syntaxbaum = null;

    try { 
      syntaxbaum = (Tprogram) parser.parse().value;  // parse
    }    
    catch (Exception e) { 
      e.printStackTrace(); 
    }

    // System.out.println(symtab);
    System.out.println(syntaxbaum);

    syntaxbaum.setSymtabs();          // set symbol table
    // syntaxbaum.printSymtabs();       // print symbol table

    syntaxbaum.checkcontext();        // CoCo (DefVar, DefFun, Arity)
    if(contexterror>0) return;

    syntaxbaum.prepInterp();          // var. indices and function pointers
    // im Syntaxbaum setzen
    syntaxbaum.interpret();           // interpretation
  }

  static int contexterror = 0;        // number of errors in context conditions

  public static void error(String s) { 
    System.out.println((contexterror++)+". "+s); 
  }
}