15 Matching Annotations
  1. Jul 2022
    1. 情景:单独下载了 Dart SDK

      执行: where/where.exe flutter dart

      出现提示 Flutter SDK 内的 dart 命令不在首位。

      则需要更新 PATH,将 C:\path-to-flutter-sdk\bin 放在 C:\path-to-dart-sdk\bin\ 前面(当前场景)。 重启命令行使修改生效,再次运行 where,此时来自相同目录的 flutter 和 dart 已经排在前面。

  2. Dec 2020
  3. Nov 2020
    1. Dart is one of very few languages (and perhaps the only “mainstream” language) that is well suited to being compiled both AOT and JIT. Supporting both kinds of compilation provides significant advantages to Dart and (especially) Flutter.
    2. Before working on Dart, the Dart team members had done groundbreaking work on advanced compilers and virtual machines, both for dynamic languages (like the V8 engine for JavaScript and Strongtalk for Smalltalk) and for static languages (like the Hotspot compiler for Java). They used this experience to make Dart unusually flexible in how it can be compiled and executed.
  4. Apr 2020