lang: mimic the old order of assignemnt (assign in the traversing order, not the inverse)

This commit is contained in:
Mathieu Virbel 2012-01-22 18:57:18 +01:00
parent b7bc342470
commit bf15f19ecb
1 changed files with 1 additions and 1 deletions

View File

@ -1268,7 +1268,7 @@ class BuilderBase(object):
return
# normally, we can apply a list of properties with a proper context
for widget_set, rules in rctx['set']:
for widget_set, rules in reversed(rctx['set']):
for rule in rules:
assert(isinstance(rule, ParserRuleProperty))
key = rule.name