nitc :: Scope :: defaultinit
private class Scope var variables = new HashMap[String, Variable] var escapemark: nullable EscapeMark = null fun get_variable(name: String): nullable Variable do if self.variables.has_key(name) then return self.variables[name] else return null end end end