sdk
sdk copied to clipboard
The Dart SDK, including the VM, dart2js, core libraries, and more.
**Issue may be edited as we add more items of work.** A general outline of areas that need to be updated for the wildcards feature: - [ ] Decide how...
*@mhamri commented on Jun 21, 2018, 1:57 PM UTC:* since the flutter widgets are meant to be written inside each other, it's a must to have scope aware IDE. at...
With the upcoming `record_use` feature, users can record usage of certain Dart objects by placing `@RecordUse` annotations on the objects. To retrieve the recordings, they need to provide the identifier...
Create: ### test.dart ```dart part "part.dart"; main() { print(fromPart()); } ``` ### part.dart ```dart import "lib.dart"; // "from part"; ``` ### lib.dart ```dart void fromLib() {} ``` Then run: ```...
``` solate (/b/s/w/itxb1yll64/dart_fuzzUXAVAV) FP NO-FFI FLAT : JIT-SLOWPATH-DET-ReleaseSIMARM64 - JIT-OPTCOUNTER-DET-DebugSIMARM64C: !DIVERGENCE! 1.101:1203086137 (output) out1 and out2 are different: is different. Expected: ... 0.565459, 0.000000, ... Actual: ... 0.565459, -0.000000, ......
``` ../../runtime/vm/compiler/assembler/assembler_x64.cc: 2735: error: expected: Utils::IsInt(32, disp) version=3.6.0-edge (main) (Unknown timestamp) on "linux_x64" pid=29978, thread=29978, isolate_group=isolate(0x6026a8e21650), isolate=(nil)((nil)) os=linux, arch=x64, comp=no, sim=no isolate_instructions=0, vm_instructions=0 fp=7fff0418d760, sp=7fff0418d630, pc=6026a66d6f4c pc 0x00006026a66d6f4c fp 0x00007fff0418d760...
There are new test failures on [Make async error injection set stack trace on errors.](https://github.com/dart-lang/sdk/commit/310d91aee82890fd065768b21bce952ca33ea745). The tests ``` vm/dart/isolates/concurrency_stress_sanity_test RuntimeError (expected Pass) ``` are failing on configurations ``` vm-appjit-linux-release-x64 vm-linux-release-x64...
There are new test failures on [Support external typed data in heapsnapshot analysis tool](https://github.com/dart-lang/sdk/commit/d71a37af18751e6086d66d868521e31b0126e0a5). The tests ``` standalone/io/socket_local_port_test RuntimeError (expected Pass) ``` are failing on configurations ``` dartk-strong-win-debug-x64 ``` ```...
There are new test failures on [Parts. Top-level library declarations shadow import prefixes in LibraryFragmentScope....[dart fix]Check if both the apply and dry-run flags are specified.](https://github.com/dart-lang/sdk/compare/372099dd638173f99e16db9963fbe4122f6d5431~...77c7958f349602f0682ae7d065dd9fac13d80e33). The tests ``` standalone/io/regress_flutter_57125_test Timeout...
I am using a stream to read out location data in a bloc. I have a start and a stop event. In the stop method, I cancel the stream subscription....