public override void Execute(Machine machine, ValueEnvironment environment) { ValueEnvironment localenv = environment.GetLocalEnvironment(); foreach (string name in this.names) { if (localenv.GetValue(name) == null) { localenv.SetEnvironmentValue(name, null); } } }