Coder Social home page Coder Social logo

Comments (3)

eernstg avatar eernstg commented on July 2, 2024 1

in any enum declare a variable named "name" or "index"

Ah, yes, that's a known bug, I think the fix is on the way.

from reflectable.dart.

eernstg avatar eernstg commented on July 2, 2024

@rakudrama, perhaps you could comment on this, or suggest someone else who might recognize the situation: Does 'Uncaught TypeError: Cannot read properties of undefined' look like a code generation issue during compilation to JavaScript? Alternatively, does it ring some other bell?

from reflectable.dart.

VirusEcks avatar VirusEcks commented on July 2, 2024

@eernstg
after days of testing -> recompiling prior to submitting this issue until today.
our team finally found the problem (facepalm)
the problem was never the reflectable package, it was the dart js compiler and partially in fault the dart-lang as well
here is a simple explanation for this error
in any enum declare a variable named "name" or "index" and the code will be valid in all builds except web/debug because javascript compiler uses the same names used in dart code but in web/release the compression/obfuscation avoids this issue
so the generated code will be for example

order_popup_widget.OrderValue = class OrderValue extends core._Enum {
    toString() {
      return "OrderValue." + this[S._name];
    }
    static ['_#new#tearOff'](index, name, name) {
      return new order_popup_widget.OrderValue.new(index, name, name);
    }
  };

where the second name will be undefined
after refactoring this variable named name the debug ran smoothly

from reflectable.dart.

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.