Enable extracting of parts of nodes

This commit is contained in:
Dave Halter
2020-02-21 01:43:36 +01:00
parent 3457bd77eb
commit 292ad9d9ac
2 changed files with 36 additions and 11 deletions

View File

@@ -147,10 +147,10 @@ y + 1, 3
#? 1 text {'new_name': 'x', 'until_column': 1}
x = y
x + 1, 3
# -------------------------------------------------- range-5
#? 0 text {'new_name': 'x', 'until_column': 1}
y + 1, 3
# -------------------------------------------------- addition-1
#? 4 text {'new_name': 'x', 'until_column': 9}
z = y + 1 + 2+ 3, 3
# ++++++++++++++++++++++++++++++++++++++++++++++++++
#? 0 text {'new_name': 'x', 'until_column': 1}
x = y
x + 1, 3
#? 4 text {'new_name': 'x', 'until_column': 9}
x = y + 1
z = x + 2+ 3, 3