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

The first approximation of name resolution #22

Merged
merged 2 commits into from
Jan 29, 2018
Merged

The first approximation of name resolution #22

merged 2 commits into from
Jan 29, 2018

Conversation

vorner
Copy link
Contributor

@vorner vorner commented Jan 21, 2018

The first attempt to write something useful about the name resolution.
As the TODO section says, his is not finished thing, but it might
hopefully be useful to someone already.

This is part of #16, but this wouldn't be complete enough to call that one done. My next plan is to do a more thorough read through the code than just a fast scan, annotating the undocumented items with comments (what is the convention, is it OK to put doc comments on private items?) and then try to improve this.

Apart from the possible usefulness for others, I already wrote this incomplete thing to make sure I don't forget what I've already learned ‒ I don't know when I'll have the time to do another pass (which will take longer than the first scan).

Few questions:

  • Should this go into master in the current form, so others (be it authors of the other chapters ‒ I think could have used some other chapters if they existed already, or people trying to get their head around the compiler landscape) can have something to start, or should it be kept separately so any inaccuracies don't confuse them?
  • As I wrote this only after a scan of the code, I have to ask: is there something completely wrong, or is my impression more or less based on reality?
  • Is there an easy way to generate docs for just the one crate? I currently get use of unstable library feature 'rustc_private': mainly needed for compiler internals (see issue #27812) from libfmt_macros. I compile with nightly, so it is a bit strange.

The first attempt to write something useful about the name resolution.
As the TODO section says, his is not finished thing, but it might
hopefully be useful to someone already.
@nikomatsakis
Copy link
Contributor

@vorner

what is the convention, is it OK to put doc comments on private items?)

yes that is ok

Should this go into master in the current form

yep, why wait?

Copy link
Contributor

@nikomatsakis nikomatsakis left a comment

Choose a reason for hiding this comment

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

Left a few minor nits but seems like a great start to me!

them.

In other words, when the code talks about namespaces, it doesn't mean the module
hierarchy, it's types vs. values vs. macros.
Copy link
Contributor

Choose a reason for hiding this comment

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

Seems good. I think we want to avoid trying to teach too must Rust here, but some bits are no doubt unavoidable. This note strikes a good balance.

shadowed by anything else). The transition to outer rib may also change the
rules what names are usable ‒ if there are nested functions (not closures), the
inner one can't access parameters and local bindings of the outer one, even
though they should be visible by ordinary scoping rules.
Copy link
Contributor

Choose a reason for hiding this comment

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

I think here it'd be helpful to have an example -- just show some rust code and the set of ribs in scope at some particular point. No need to dive into fancy features, just a generic impl + function will have plenty of ribs to get the point across.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm not sure how helpful or readable that example is, but I think it could help a bit.

hierarchy.

There are some exceptions to this. Items are bit tricky, because they can be
used even before encountered ‒ therefore every bock needs to be first scanned
Copy link
Contributor

Choose a reason for hiding this comment

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

Nit: s/bock/block/?


This is a result of the first pass of learning the code. It is definitely
incomplete and not detailed enough. It also might be inaccurate in places.
Still, it probably provides useful first guidepost to what happens in there.
Copy link
Contributor

Choose a reason for hiding this comment

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

This seems great. It's already hitting on some of the tensions of this book, of course -- I would love it if we had a way to link into the code, so that e.g. we could show some code that is setting up ribs, and then be notified if we got an error later. But I think it's good as is.

@nikomatsakis
Copy link
Contributor

ping @vorner -- think you'll have a chance to address feedback here?

@vorner
Copy link
Contributor Author

vorner commented Jan 26, 2018

think you'll have a chance to address feedback here?

I hope to get to it in few hours today. I didn't have the time during the week.

@vorner
Copy link
Contributor Author

vorner commented Jan 26, 2018

Added as a fixup, so the changes are easier to review.

@nikomatsakis
Copy link
Contributor

@vorner seems good, did you want to squash?

modules.
* Introducing a let binding ‒ this can shadow another binding with the same
name.
* Macro expansion border ‒ to cope with macro hygiene.
Copy link
Member

Choose a reason for hiding this comment

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

I'm guessing pattern matching and globals too?

Copy link
Member

@mark-i-m mark-i-m Jan 29, 2018

Choose a reason for hiding this comment

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

Also, do generics (impl<T>) and named lifetimes(impl<'a>) follow this rule?

EDIT: sorry, I should have read the rest of the chapter first

@vorner vorner merged commit 066a32c into rust-lang:master Jan 29, 2018
@vorner vorner deleted the name-resolution branch January 29, 2018 21:19
@nikomatsakis nikomatsakis mentioned this pull request May 19, 2018
6 tasks
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.

3 participants