Coder Social home page Coder Social logo

Comments (2)

dtolnay avatar dtolnay commented on August 15, 2024

This syn::Generics includes a syn::Lifetime that you created yourself right? It looks like the Lifetimes parsed by syn always include the apostrophe.

I want the apostrophe to be included in the Lifetime name because this is how libsyntax does it. Here is what I did to check:

Create main.rs:

fn f<'a>() {}

Run rustc -Z ast-json main.rs. The following appears in the output:

"lifetimes": [
  {
    "attrs": {
      "_field0": null
    },
    "lifetime": {
      "id": 5,
      "span": {
        "lo": 5,
        "hi": 7
      },
      "name": "'a"
    },
    "bounds": []
  }
],

The lifetime is "'a" not just "a".

Can you think of a better way to handle this? Maybe it should panic if there is a lifetime that does not start with apostrophe? Or maybe add the apostrophe if one is missing? Or maybe just document that user is responsible for the apostrophe?

from syn.

mcarton avatar mcarton commented on August 15, 2024

Ah! I never noticed the lifetime name included the '. syn behavior seems legit then.
Some documentation would be enough I guess. Maybe a panic in syn::Lifetime::new if there is no '.
Thanks!

from syn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.