This file is indexed.

/usr/share/doc/frown-doc/examples/manual/Paren2.lg is in frown-doc 0.6.1-14.

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
> module Paren2 where
> import Result
>
> data Tree                     =  Leaf | Fork Tree Tree
>                                  deriving (Show)
>
> %{
>
> Terminal                      =  '(' | ')';
>
> Nonterminal                   =  paren {Tree};
>
> paren  {Leaf}                 :  ;
>        {Fork t u}             |  paren {t}, '(', paren {u}, ')';
>       
>
> }%
>
> frown _                       =  fail "syntax error"