[Fix] --define replaces SymbolRefs in LHS of assignments

See #208 for context
This commit is contained in:
Christopher Chedeau
2015-08-10 11:22:36 -07:00
parent 464a942a95
commit 3ff0b9e0c9
2 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
do_not_update_lhs: {
options = { global_defs: { DEBUG: false } };
input: { DEBUG = false; }
expect: { DEBUG = false; }
}
do_update_rhs: {
options = { global_defs: { DEBUG: false } };
input: { MY_DEBUG = DEBUG; }
expect: { MY_DEBUG = false; }
}