-
Notifications
You must be signed in to change notification settings - Fork 40
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
feat(stageleft): support crates that have no entrypoints #983
Conversation
Deploying with
|
Latest commit: |
5d67faa
|
Status: | ✅ Deploy successful! |
Preview URL: | https://ca6db8e4.hydroflow.pages.dev |
Branch Preview URL: | https://pr983.hydroflow.pages.dev |
4c0f7b3
to
6ac38d6
Compare
Also includes various bugfixes needed for Hydroflow+.
let underscored_ident = syn::Ident::new(&underscored, Span::call_site()); | ||
quote! { #underscored_ident } | ||
} else { | ||
quote! { crate } | ||
} | ||
} | ||
proc_macro_crate::FoundCrate::Name(name) => { | ||
let ident = syn::Ident::new(&name, Span::call_site()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was there before, but presumably these Span::call_site should get swapped for meaningful spans some day ™️?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah... basically all the spans involved here are cross-crate spans, so some day ™️ indeed.
…ct#983) Also includes various bugfixes needed for Hydroflow+.
feat(stageleft): support crates that have no entrypoints
Also includes various bugfixes needed for Hydroflow+.
Stack created with Sapling. Best reviewed with ReviewStack.