-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
New syntax for lifetimes #4846
Labels
A-lifetimes
Area: Lifetimes / regions
A-parser
Area: The parsing of Rust source code to an AST
A-pretty
Area: Pretty printing (including `-Z unpretty`)
A-typesystem
Area: The type system
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
E-hard
Call for participation: Hard difficulty. Experience needed to fix: A lot.
Comments
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Feb 8, 2013
bors
added a commit
that referenced
this issue
Feb 8, 2013
Merged
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Feb 28, 2013
Major changes are: - replace ~[ty_param] with Generics structure, which includes both OptVec<TyParam> and OptVec<Lifetime>; - the use of syntax::opt_vec to avoid allocation for empty lists; cc rust-lang#4846
bors
added a commit
that referenced
this issue
Mar 6, 2013
… r=nikomatsakis Work towards #4846. - Institute new region defaults where all omitted regions get a fresh lifetime. - Require explicit region names except in functions. - Fix a bug in region parameterization inference. I've been putting this off because it will not be important when we remove RP inference in favor of explicit declarations, but then it was blocking this patch. r? @pcwalton
Closed
nikomatsakis
added a commit
to nikomatsakis/rust
that referenced
this issue
Mar 20, 2013
and the fn_ctxt doesn't need any self_info field at all. Step towards fixing `fn(&self)` (cc rust-lang#4846) to have a distinct lifetime.
bors
added a commit
that referenced
this issue
Mar 20, 2013
…, r=nikomatsakis Refactor the self-info so that the def-id is carried in ty_self()and the fn_ctxt doesn't need any self_info field at all. Pull out explicit self transformation into `check_method`. Step towards fixing `fn(&self)` to have a distinct lifetime. (cc #4846) r? @catamorphism
This was referenced Apr 1, 2013
@graydon not 100%, what remains is:
I was hoping to do this for 0.7 |
ghost
assigned nikomatsakis
May 7, 2013
@nikomatsakis additionally the pretty printer or whatever it is that diagnostics use (ty_to_str I think? Not sure) still use the old syntax. |
This was referenced Aug 29, 2013
This was referenced Sep 5, 2013
This was referenced Oct 2, 2013
This was referenced Oct 13, 2013
Closed
nikomatsakis
referenced
this issue
in dwrensha/rust
Oct 24, 2013
This was referenced Oct 28, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-lifetimes
Area: Lifetimes / regions
A-parser
Area: The parsing of Rust source code to an AST
A-pretty
Area: Pretty printing (including `-Z unpretty`)
A-typesystem
Area: The type system
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
E-hard
Call for participation: Hard difficulty. Experience needed to fix: A lot.
As described in this mailing list thread:
https://mail.mozilla.org/pipermail/rust-dev/2013-February/003105.html
The text was updated successfully, but these errors were encountered: