CodeTools::AST << {

KeywordRestParameter < Node {
  node_type kwrestprm
  field name

  map_local: |scope| {
    scope.new_local(:__myco_keywords_value__)
    scope.new_local(self.name)
  }

  bytecode: |g| { } # TODO: move ParameterAssembly logic to this method
}

}