Skip to content

Add _ to list of special variables #43

Closed
@jiegillet

Description

@jiegillet

Currently, _ is replaced by a placeholder. Variables starting with an underscore _like_this should be replaced, but _ has a special meaning that should be preserved.

Input

def foo(_), do: :ok

Desired output

def(placeholder_1(_)) do
  :ok
end

Current output

def(placeholder_1(placeholder_2)) do
  :ok
end

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions