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
library;
import self as self;
import "dart:core" as core;
class C extends core::Object {
default constructor •() → void
: super core::Object::•()
;
}
static const field dynamic V = const core::_ConstantExpressionError::•()._throw(new core::_CompileTimeError::•("file:///test.dart:2:17: Error: Method not found: 'C.named'.\nconst V = const C.named();\n ^"));
As you can see, it does not correspond to the original Dart code - there is no _throw in the Dart code, and both C and named are lost. There is no way for Analyzer to resynthesize correct element model from this Kernel.
The text was updated successfully, but these errors were encountered:
For the following code:
The following Kernel is generated.
As you can see, it does not correspond to the original Dart code - there is no
_throw
in the Dart code, and bothC
andnamed
are lost. There is no way for Analyzer to resynthesize correct element model from this Kernel.The text was updated successfully, but these errors were encountered: