class RubyLsp::Scope
def add(name, type)
Add a new local to this scope. The types should only be `:parameter` or `:variable`
def add(name, type) @locals[name.to_sym] = Local.new(type) end
def add(name, type) @locals[name.to_sym] = Local.new(type) end