Skip to content
Snippets Groups Projects
Commit ad23d39a authored by Daniel Brown's avatar Daniel Brown
Browse files

fixing parsing of consts when used multiple times in a single line, also...

fixing parsing of consts when used multiple times in a single line, also checks for math operations around const name in equation
parent 338b40b1
No related branches found
No related tags found
No related merge requests found
......@@ -521,10 +521,21 @@ class kat(object):
# check if we have a var/constant in this line
if line.find('$') >= 0:
for key in constants.keys():
if line.find('$'+key+' ') > -1:
# TODO: need to fix this for checking mulitple instances of const in a single line
chars = [' ', '+', '-', '*', '/', ')']
for c in chars:
none_found = False
while not none_found:
if line.find('$'+key+c) > -1:
constants[key].usedBy.append(line)
line = line.replace('$'+key+' ', str(constants[key].value)+ ' ')
elif line.endswith('$'+key):
line = line.replace('$'+key+c, str(constants[key].value)+ c)
else:
none_found = True
if line.endswith('$'+key):
constants[key].usedBy.append(line)
line = line.replace('$'+key, str(constants[key].value))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment