Giter Club home page Giter Club logo

Comments (2)

Andarist avatar Andarist commented on August 21, 2024

This is not specific to generator functions. It's related to inferring type parameters from unannotated parameters with inferred types from initializers (TS playground):

declare function fnDerive<A extends unknown[]>(fn: (...args: A) => void): A;

const result = fnDerive(function (a = 0, b = "") {});
//    ^? const result: [a?: unknown, b?: unknown]

declare function fnDerive2<A, B>(fn: (a: A, b: B) => void): [A, B];

const result2 = fnDerive2(function (a = 0, b = "") {});
//    ^? const result2: [unknown, unknown]

It's also just related to how there is a contextual signature available here. This touched on what I improved here: #56506 . This PR didn't break it anyhow when it comes to the case presented here but it also didn't improve it.

So the question here is also - how both situations should be differentiated? There are situations in which the contextual parameter type should be preferred. Perhaps it could be done based on checkMode & CheckMode.Inferential, or maybe based on the uninstantiated contextual signature when the parameter's type is a type variable.

I'd love to experiment with this but I have a long list of things to experiment with so no promises 😅

from typescript.

SukkaW avatar SukkaW commented on August 21, 2024

This is not specific to generator functions.

Updated title and search terms to reflect this~

from typescript.

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.