-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document structs, maps, keyword lists via testing & fix accidental key replacement bug #73
Conversation
lib/representer.ex
Outdated
# module attributes that hold module or function names inside of key-value pairs. | ||
# Note that module attributes that hold module or function names outside of key-value pairs are excluded from this list. | ||
@attributes_with_key_value_pairs_that_hold_module_or_function_names ~w(compile optional_callbacks dialyzer)a | ||
defp do_use_existing_placeholders({:@, meta, [{name, meta2, value}]}, represented) | ||
when name in @attributes_with_key_value_pairs_that_hold_module_or_function_names do | ||
handle_list = fn list, represented -> | ||
{new_list, new_represented} = | ||
Enum.reduce(list, {[], represented}, fn elem, {acc, represented} -> | ||
{elem, represented} = | ||
case elem do | ||
{_, _} -> use_existing_placeholders_on_key_value_pair(elem, represented) | ||
_ -> {elem, represented} | ||
end | ||
|
||
{[elem | acc], represented} | ||
end) | ||
|
||
{Enum.reverse(new_list), new_represented} | ||
end | ||
|
||
{value, represented} = | ||
case value do | ||
# e.g. @dialyzer {:nowarn_function, function_name: 0} | ||
[{elem1, elem2}] when is_list(elem2) -> | ||
{elem2, represented} = handle_list.(elem2, represented) | ||
{[{elem1, elem2}], represented} | ||
|
||
# e.g. @optional_callbacks [function_name1: 0] | ||
[elem1] when is_list(elem1) -> | ||
{elem1, represented} = handle_list.(elem1, represented) | ||
{[elem1], represented} | ||
|
||
value -> | ||
{value, represented} | ||
end | ||
|
||
{{:@, meta, [{name, meta2, value}]}, represented} | ||
end | ||
|
||
# TODO: `when` clauses in specs but only for variable names, not key names in maps | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems a bit crazy already and it's not the full fix yet 🙊 I'm trying to fix the consequences of d2fc2d3
(#73) but I'm not sure if it's worth it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Haha yeah it does seem a bit crazy and endless.
Representers get so complex after a while :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, it works as expected, but the special cases are a bit frightening.
@@ -0,0 +1,24 @@ | |||
defmodule Placeholder_1 do | |||
defstruct [:wheels, :doors, :color] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Eventually, we will want these user defined keys to be replaced as mentionned in #37, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes
This PR: