Giter Club home page Giter Club logo

Comments (4)

ahejlsberg avatar ahejlsberg commented on April 28, 2024 1

Since #56004 we reason more deeply (and correctly) about conditional type constraints, which definitely is a good thing. In this particular example it apparently causes us to materialize intersection types of the form ("foo" | Exclude<Q, "foo>) & ("bar | Exclude<Q, "bar">) & .... with 18 or so union types being intersected. This comes out to 2^18 possible constituents, which is above our 100,000 limit. Of course, the final intersection will actually only have 19 constituents because all of the literal types intersect to never. But we don't realize that.

Here's a simpler repro:

// Error: Expression produces a union type that is too complex to represent.
type Foo<T extends string> =
    & ("a" | T)
    & ("b" | T)
    & ("c" | T)
    & ("d" | T)
    & ("e" | T)
    & ("f" | T)
    & ("g" | T)
    & ("h" | T)
    & ("i" | T)
    & ("j" | T)
    & ("k" | T)
    & ("l" | T)
    & ("m" | T)
    & ("n" | T)
    & ("q" | T)
    & ("p" | T)
    & ("q" | T)
    & ("r" | T);

I'll think about ways to optimize this.

from typescript.

fatcerberus avatar fatcerberus commented on April 28, 2024

I assume you mean "properties" instead of "parameters"? There are no function types in the Update interface, let alone ones with large numbers of parameters.

from typescript.

RyanCavanaugh avatar RyanCavanaugh commented on April 28, 2024

Bisects to #56004

from typescript.

RyanCavanaugh avatar RyanCavanaugh commented on April 28, 2024

@ahejlsberg seems like Not a Defect to me but wanted to double-check

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.