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

Syntax collision with Type Ascription #11

Closed
hoodie opened this issue Dec 22, 2015 · 12 comments
Closed

Syntax collision with Type Ascription #11

hoodie opened this issue Dec 22, 2015 · 12 comments
Assignees
Milestone

Comments

@hoodie
Copy link
Contributor

hoodie commented Dec 22, 2015

The current nightly of rustc merged Type Ascription, which seems to collide with the format syntax of prettytable-rs.

@phsym phsym added the bug label Dec 22, 2015
@phsym
Copy link
Owner

phsym commented Dec 22, 2015

Type Ascription indeed conflicts with the style syntax in macros.
For example in cell.rs :

macro_rules! cell {
    () => ($crate::cell::Cell::default());
    ($value:expr) => ($crate::cell::Cell::new(&$value.to_string()));
    ($style:ident : $value:expr) => (cell!($value).style_spec(stringify!($style)));
}

($style:ident : $value:expr) is in conflict.

Do you think this is expected and I should change the macro syntax, or should I report this as an
issue to rust team ?

@phsym phsym added the nightly label Dec 22, 2015
@hoodie
Copy link
Contributor Author

hoodie commented Dec 22, 2015

I have no idea. Though I suppose this might affect several crates. This issue already shows up as a mention in the linked RFC issue.

@phsym
Copy link
Owner

phsym commented Dec 22, 2015

I also think it will affect several crates. Maybe I should wait a bit and see, or do you need an urgent fix ?

@hoodie
Copy link
Contributor Author

hoodie commented Dec 22, 2015

Nope no biggy. I just wanted to mention this to you. Worst case: you have to change your api. Best case: the compiler learns to distinguish.
Let's see what happens.

@phsym
Copy link
Owner

phsym commented Dec 26, 2015

By the way @hoodie, thank you for mentionning this issue. I don't play that much with nightly rust for now.

@miketang84
Copy link

any new info?

@hoodie
Copy link
Contributor Author

hoodie commented Jan 5, 2016

I would consider preemptively changing the macro syntax of this crate. This could still be a valid 0.6.0 release.

@phsym
Copy link
Owner

phsym commented Jan 5, 2016

That's also what I was thinking about. This won't be a big code change.

@phsym phsym added this to the v0.6.0 milestone Jan 13, 2016
@phsym phsym mentioned this issue Jan 15, 2016
@phsym phsym self-assigned this Jan 15, 2016
@phsym phsym removed the 3rd Party label Jan 17, 2016
@phsym phsym closed this as completed in #18 Jan 20, 2016
@phsym
Copy link
Owner

phsym commented Jan 20, 2016

FYI, the crate has been fixed for nightly issue. I changed the macro syntax, and it's now available on crates.io in v0.6.0

@hoodie
Copy link
Contributor Author

hoodie commented Jan 20, 2016

👍
man do I wish github would just let me like your comment

@phsym
Copy link
Owner

phsym commented Jan 20, 2016

😄 A thumb is all you need

@miketang84
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants