a0967c2a4f
Instead of processing included_children operations either before or
after the parent scope, collect all operations within that scope and
its included children scopes, and order them based on line number
information.
This requires propagating line numbers for each operation as well as
line numbers for each include() statement, all the way from the
parser grammar to the operator evaluation routines.
This should improve operation handling for included_children
(via include()), but not for regular children (introduced by ifs or
elses), aka this doesn't solve the whole imperative vs declarative
dilemma.
Sample projects where the improvement should be seen:
tests/auto/gui/kernel/qguiapplication and
src/plugins/sqldrivers/sqlite.
This amends
|
||
---|---|---|
.. | ||
data | ||
__init__.py | ||
test_lc_fixup.py | ||
test_logic_mapping.py | ||
test_operations.py | ||
test_parsing.py | ||
test_scope_handling.py |