Skip to content

Commit

Permalink
fix unexpected unstable types
Browse files Browse the repository at this point in the history
  • Loading branch information
thautwarm committed Sep 4, 2019
1 parent 1ca89ec commit 6b03b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NameResolution.jl
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function abs_interp_on_scopes(analyzer::Analyzer, inherited::D) where {
end
request_freevar!(analyzer, var)
end
inherited = Dict(inherited..., bounds...)
inherited = VarMap(inherited..., bounds...)
for child in analyzer.children
abs_interp_on_scopes(child, inherited)
end
Expand Down

2 comments on commit 6b03b4a

@thautwarm
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request updated: JuliaRegistries/General/3243

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.1 -m "<description of version>" 6b03b4ac5f278db2a319bc3c3eedf8ab012f1dc5
git push origin v0.1.1

Please sign in to comment.