dev_compiler icon indicating copy to clipboard operation
dev_compiler copied to clipboard

DEPRECATED - Moved to main SDK

Results 56 dev_compiler issues
Sort by recently updated
recently updated
newest added

`dart.list` takes an element type. We should investigate using a factory constructor instead. The problem is that ``` dart.list([1, 2, 3], core.int) ``` must to look up the type `JSArray`...

area-dev-compiler

e.g. here https://codereview.chromium.org/1969063002/diff/1/lib/src/compiler/code_generator.dart#newcode526 but also there's an "Unimplemented unknown name" message that shows up if you have a typo'd name

area-dev-compiler

Split from #520 The following test fails, because defineExtensionMember does not find a property descriptor for MyList.length, so it does not create `[dartx.length]` and thus ListMixin.forEach will throw. ``` dart...

P2 medium
area-dev-compiler

Fix created constructors for dart:html types so that they stop generating uneccessary code that will probably mess up element rendering. The problem is we need to track that native fields...

P2 medium
area-dev-compiler

Any reference to a dart type like in : ``` dart var x = MyTag ``` gets translated in ``` js let x = dart.wrapType(index.MyTag); ``` So when passing a...

area-dev-compiler

Sorry if this is a noob question, and I appreciate this isn't ready for production, but I can't get things working with `dart2js` so figured I'd have a go with...

area-dev-compiler