10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-02 11:25:19 +02:00

Improved functions behavior

Version:1.1.42
This commit is contained in:
Anthony Scemama 2009-10-22 14:48:05 +02:00
parent c9c5f87fdc
commit 9b03305f3b
2 changed files with 9 additions and 24 deletions

View File

@ -363,27 +363,6 @@ def add_subroutine_needs():
parsed_text = add_subroutine_needs() parsed_text = add_subroutine_needs()
######################################################################
def find_vars_from_functions():
main_result = []
for filename, text in parsed_text:
result = []
for vars,line in text:
if type(line) in [ \
Simple_line, Assert,
Do , If,
Elseif , Select,
Call , Provide_all
]:
funcs = find_funcs_in_line(line)
for f in funcs:
vars += subroutines[f].needs
result.append( (vars,line) )
main_result.append( (filename, result) )
return main_result
parsed_text = find_vars_from_functions()
###################################################################### ######################################################################
def build_needs(): def build_needs():
# Needs # Needs
@ -404,8 +383,14 @@ def build_needs():
if isinstance(line,Call): if isinstance(line,Call):
subname = find_subname(line) subname = find_subname(line)
var.needs += subroutines[subname].needs var.needs += subroutines[subname].needs
# Need to do the same for functions. Variables inside if blocks of the elif type(line) in [ \
# function are not seen in tree. Simple_line, Assert,
Do , If,
Elseif , Select,
]:
funcs = find_funcs_in_line(line)
for f in funcs:
var.needs += subroutines[f].needs
for v in variables.keys(): for v in variables.keys():
main = variables[v].same_as main = variables[v].same_as
if main != v: if main != v:

View File

@ -1 +1 @@
version = "1.1.41" version = "1.1.42"