File: Loop1.g

package info (click to toggle)
frown 0.6.1-14
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,956 kB
  • ctags: 271
  • sloc: haskell: 35,132; makefile: 228; csh: 35; yacc: 23
file content (48 lines) | stat: -rw-r--r-- 728 bytes parent folder | download | duplicates (6)
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
{-

Example for a LR(0) grammar that causes the parser to loop!

	frown --debug Loop1.g

Try
	
	x "$" :: Maybe ()

Using

	frown --debug --trace Loop1.g

shows why. Try

	x "$"

-}

module Loop
where
import Monad

instance MonadPlus IO where
    mzero                     =  fail "mzero"
    m `mplus` n               =  putStrLn "** choice" >> m >> putStrLn "** backtrack" >> n

frown ts                      =  putStrLn "*** syntax error" >> return undefined

type Terminal                 =  Char

type Result                   =  IO

{-
frown _                       =  fail "syntax error"
-}

%{

Terminal                      =  'a' | 'b' | 'c' | *'$';
Nonterminal                   =   x  |  y;

x : y, x, 'c';

y : ;

}%