simple-framework / simple_grid_yaml_compiler

Generates the extended YAML output for an input site_level_configuration_file
Apache License 2.0
0 stars 9 forks source link

pull up variable-variable assignments #22

Closed maany closed 5 years ago

maany commented 5 years ago
var1: &var1 value1
var2: &var2
  - *var1

is evaluated as

var1: value1
var2:
 - value1

but it should be evaluated as

var1: value1
var2: value1
maany commented 5 years ago

Already achieved using from keyword