aboutsummaryrefslogtreecommitdiff
path: root/unix/boot/spp/rpp/rpprat/lex.r
blob: bc8f7a27ce2500ddf8ed804e44ec2f6be060e74b (plain) (blame)
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
#-h-  lex			  543  local   12/01/80  15:54:12
# lex - return lexical type of token
   include  defs

   integer function lex (lexstr)
   character lexstr (MAXTOK)

   include COMMON_BLOCKS

   character gnbtok, t, c

   integer lookup, n
   string sdefault "default"

   for (lex = gnbtok (lexstr, MAXTOK);  lex == NEWLINE;
        lex = gnbtok (lexstr, MAXTOK))
      ;

   if (lex == EOF | lex == SEMICOL | lex == LBRACE | lex == RBRACE)
      return
   if (lex == DIGIT)
      lex = LEXDIGITS
   else if (lex == TOGGLE)
      lex = LEXLITERAL
   else if (lex == XPP_DIRECTIVE)
      lex = LEXDECL
   else if (lookup (lexstr, lex, rkwtbl) == YES) {
      if (lex == LEXDEFAULT) {				# "default:"
	 n = -1
	 repeat {
	    c = ngetch (c)
	    n = n + 1
	 } until (c != BLANK & c != TAB)
	 call putbak (c)

	 t = gnbtok (lexstr, MAXTOK)
	 call pbstr (lexstr)
	 if (n > 0)
	    call putbak (BLANK)
	 call scopy (sdefault, 1, lexstr, 1)
	 if (t != COLON)
	    lex = LEXOTHER
	 }
      }
   else
      lex = LEXOTHER

   return
   end