Giter Club home page Giter Club logo

Comments (13)

belkadan avatar belkadan commented on August 11, 2024

Yeah, I'm just going to say this is a stdlib issue to add @warn_unused_result.

from swift-syntax.

belkadan avatar belkadan commented on August 11, 2024

Looks like this warns as expected now.

from swift-syntax.

swift-ci avatar swift-ci commented on August 11, 2024

Comment by Chris Eidhof (JIRA)

This is actually still broken (DEVELOPMENT-SNAPSHOT-2016-08-04-a).

from swift-syntax.

belkadan avatar belkadan commented on August 11, 2024

But you get a warning about it. What more were you expecting?

from swift-syntax.

swift-ci avatar swift-ci commented on August 11, 2024

Comment by Chris Eidhof (JIRA)

I'm not getting a warning... (The only thing that's broken in my example is the ++ operator which needs to be +=1).

from swift-syntax.

swift-ci avatar swift-ci commented on August 11, 2024

Comment by Chris Eidhof (JIRA)

Interesting, I only tested it in a playground.

Upon further investigation: I now do get a warning, but only when I run it from the command-line. In an Xcode playground, I don't get a warning at all.

from swift-syntax.

belkadan avatar belkadan commented on August 11, 2024

Oh, right, because playgrounds actually do things with results, so they're not just discarded. Hm.

from swift-syntax.

AnthonyLatsis avatar AnthonyLatsis commented on August 11, 2024

Would be nice to have a special warning for when the opening brace is followed on the same line by something that successfully parses as a capture list, and the alleged capture list is followed by neither in nor a type. Sounds like a decent starter bug.

from swift-syntax.

AnthonyLatsis avatar AnthonyLatsis commented on August 11, 2024

@ahoppen Why did you transfer this back?

from swift-syntax.

ahoppen avatar ahoppen commented on August 11, 2024

Because the code itself is valid as far is the parser is concerned. You can totally have an array literal on the first line of the closure. I think the type checker already warns that the result of the array is unused and we should probably improve the diagnostic in the type checker to suggest inserting in, instead of warning about Expression of type '[Int]' is unused.

from swift-syntax.

AnthonyLatsis avatar AnthonyLatsis commented on August 11, 2024

No it sure is valid code, and we do emit a generic warning in the type checker. But I think this deserves a specialized, actionable warning, and that this warning is best implemented in the parser, where we have the necessary tools to check for line breaks and whether something parses as a capture list. Another benefit of a parser warning is that we can extrapolate it to variations where the capture list is unambiguous.

let capture: () -> Int = { [weak x]
  return x
}

from swift-syntax.

ahoppen avatar ahoppen commented on August 11, 2024

Oh, I see what you mean now. We should unconditionally warn in the parser if the following conditions are satisfied

  • An array literal on the same line that contains the closure’s {.
  • The array literal is followed by a newline
  • The closure contains multiple code block items

To implement this, we need to add infrastructure in the parser to emit warnings (we currently only have infrastructure to emit lexer warnings). My best idea of how to design this, is that the parser sets the hasWarning flag on the array literal and then the parse diagnostic generator then emits the actual warning diagnostic. We would just need to figure out what to do if a syntax tree has hasWarning set but the diagnostic generator doesn’t emit a warning diagnostic. But maybe the solution here would be to emit a top-level warning saying that we found a compiler bug and asking for a bug report with the source file.

from swift-syntax.

ahoppen avatar ahoppen commented on August 11, 2024

Tracked in Apple’s issue tracker as rdar://115599038

from swift-syntax.

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.