madlisp/src/Env.php
Pekka Laiho adc6ab99c3 classes
2020-05-28 11:55:58 +07:00

29 lines
561 B
PHP

<?php
namespace MadLisp;
class Env extends Hash
{
protected ?Env $parent;
public function __construct(?Env $parent = null)
{
$this->parent = $parent;
}
public function get(string $key)
{
if ($this->has($key)) {
return $this->data[$key];
} elseif ($this->parent) {
return $this->parent->get($key);
}
throw new MadLispException("symbol $key not defined in env");
}
public function set(string $key, $value): void
{
$this->data[$key] = $value;
}
}