-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservusLex.py
98 lines (84 loc) · 1.75 KB
/
servusLex.py
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
import ply.lex as lex
reserved = {
'start' : 'START',
'ende' : 'ENDE',
'frei' : 'FREI',
'wenn' : 'WENN',
'sonst' : 'SONST',
'tun' : 'TUN',
'gosub' : 'GOSUB',
'dim' : 'DIM',
'eingabe' : 'EINGABE',
'als' : 'ALS',
'fur' : 'FUR',
'in' : 'IN',
'return' : 'RETURN',
'def' : 'DEF',
'wort' : 'WORT',
'float' : 'FLOAT',
'und' : 'UND',
'oder' : 'ODER',
'druck' : 'DRUCK',
'solange' : 'SOLANGE',
'waerend' : 'WAEREND',
'lass' : 'LASS'
}
literals = "+-!@$/&*^()[]{}+=_?;:,<>.|% "
tokens = [
'ID',
'LINKER_PFEIL',
'STRING',
'FLOAT_NUMBER',
'INTEGER_NUMBER',
'GtE',
'StE',
'EQUAL',
'NOT',
'COMMENT',
'QUOTATION_MARK'
# 'UMINUS'
] + list(reserved.values())
def t_COMMENT(t):
r'\#.*'
pass
def t_ID(t):
r'[a-zA-Z_][a-zA-Z_\d\[\]]*'
t.type = reserved.get(t.value,'ID') # Check for reserved words
return t
def t_FLOAT_NUMBER(t):
r'\d+\.\d+'
t.value = float(t.value)
return t
def t_INTEGER_NUMBER(t):
r'\d+'
t.value = int(t.value)
return t
def t_STRING(t):
r'\"[a-z A-Z_\d]+\"'
t.value = str(t.value)
return t
t_LINKER_PFEIL = r'\<\-'
t_GtE = r'\>\='
t_StE = r'\<\='
t_EQUAL = r'\=\='
t_NOT = r'\!\='
t_QUOTATION_MARK = r'\"'
t_UND = r'\&\&'
t_ODER = r'\|\|'
# t_UMINUS = r'\-'
# Define a rule so we can track line numbers
def t_newline(t):
r'\n+'
t.lexer.lineno += len(t.value)
# A string containing ignored characters (spaces and tabs)
t_ignore = ' \t'
# Error handling rule
def t_error(t):
print("Illegal character '%s'" % t.value[0])
t.lexer.skip(1)
def testLexer():
lexer.input(testProgram)
for tok in lexer:
print(tok)
# Build the lexer
lexer = lex.lex()