Skip to content
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

Merged
merged 10 commits into from
Sep 10, 2022

Conversation

angelikatyborska
Copy link
Member

@angelikatyborska angelikatyborska commented Sep 3, 2022

This PR:

  • Turns all expected representations in tests into Elixir files so that we get syntax coloring.
  • Adds a bunch of new tests for structs, maps, and keyword lists to document the current behavior.
  • Fixes a bug where keys in structs, maps, or keyword lists would be replaced with a placeholder if they happened to have the same name as a previously used variable somewhere in the code.

Comment on lines 280 to 320
# 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

Copy link
Member Author

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.

Copy link
Contributor

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 :(

@angelikatyborska angelikatyborska changed the title WIP: structs, maps, keyword lists Document structs, maps, keyword lists via testing & fix accidental key replacement bug Sep 4, 2022
@angelikatyborska angelikatyborska marked this pull request as ready for review September 4, 2022 08:27
Copy link
Contributor

@jiegillet jiegillet left a 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]
Copy link
Contributor

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?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes

@angelikatyborska angelikatyborska merged commit 79b0e9e into main Sep 10, 2022
@angelikatyborska angelikatyborska deleted the structs branch September 10, 2022 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants