Ejemplo n.º 1
0
 public ImportedVariable(string name, IVariable parent, Location location)
     : base(name, parent.Value, VariableSource.Import, location)
 {
     Parent = parent;
     Parent?.AddReference(location);
 }