You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 22, 2018. It is now read-only.
After CL 6c1c940 it is no longer safe for the compiler to assume dart.dynamic is a valid JS expression to instantiate it.
Instead the compiler needs to understand that dynamic is a first class reference to the Type for dynamic, and know what Element corresponds to that type declaration, so it can be generated in the correct order.
The text was updated successfully, but these errors were encountered:
in general all "dart." references are problematic now. We need to instead go through _emitTypeName. The good news is we can probably eliminate special case code we have for these types.
After CL 6c1c940 it is no longer safe for the compiler to assume
dart.dynamic
is a valid JS expression to instantiate it.Instead the compiler needs to understand that
dynamic
is a first class reference to the Type for dynamic, and know what Element corresponds to that type declaration, so it can be generated in the correct order.The text was updated successfully, but these errors were encountered: