Dart (programming language)

Dart
Paradigm Multi-paradigm: scripting, object-oriented (class-based), imperative, reflective, functional[1]
Designed by Lars Bak and Kasper Lund
Developer Google
First appeared October 10, 2011 (2011-10-10)[2]
Stable release
2.0.0 / August 6, 2018 (2018-08-06)[3]
Preview release
2.1.0-dev.5.0 / September 19, 2018 (2018-09-19)[4]
Typing discipline

1.x: Optional,

2.x: Static[5]
Platform Cross-platform
OS Cross-platform
License BSD
Filename extensions .dart
Website www.dartlang.org
Major implementations
Dart VM, dart2js, DDC, Flutter
Influenced by
C#, Erlang, JavaScript, Smalltalk, Strongtalk[6]

Dart is a general-purpose programming language originally developed by Google and later approved as a standard by Ecma (ECMA-408).[7] It is used to build web, server, and mobile applications.[8]

Dart is an object-oriented, class defined language[9] using a C-style syntax that transcompiles optionally into JavaScript. It supports interfaces, mixins, abstract classes, reified generics, static typing, and a sound type system.[10]

History

Dart was unveiled at the GOTO conference in Aarhus, Denmark, October 10–12, 2011.[11] The project was founded by Lars Bak and Kasper Lund.[12] Dart 1.0 was released in November 2013.[13] In August 2018, Dart 2.0 was released, with language changes including a sound type system.[14]

Standardization

Ecma International has formed technical committee TC52[15] to work on standardizing Dart, and in as much as Dart can be compiled to standard JavaScript, it works effectively in any modern browser. Ecma International approved the Dart language specification first edition in July 2014, at its 107th General Assembly,[16] and a second edition in December 2014.[17] The latest specification is available at https://www.dartlang.org/guides/language/spec.

Usage

There are three main ways to run Dart code:

Compiled as JavaScript
To run in mainstream web browsers, Dart relies on a source-to-source compiler to JavaScript. According to the project site, Dart was "designed to be easy to write development tools for, well-suited to modern app development, and capable of high-performance implementations."[18] When running Dart code in a web browser the code is precompiled into JavaScript using the dart2js compiler. Compiled as JavaScript, Dart code is compatible with all major browsers with no need for browsers to adopt Dart. Through optimizing the compiled JavaScript output to avoid expensive checks and operations, code written in Dart can, in some cases, run faster than equivalent code hand-written using JavaScript idioms.[19]
Stand-alone
The Dart software development kit (SDK) ships with a stand-alone Dart VM, allowing Dart code to run in a command-line interface environment. As the language tools included in the Dart SDK are written mostly in Dart, the stand-alone Dart VM is a critical part of the SDK. These tools include the dart2js compiler and a package manager called pub. Dart ships with a complete standard library allowing users to write fully working system apps, such as custom web servers.[20]
Ahead-of-time compiled
Dart code can be AOT-compiled into machine code (native instruction sets). Apps built with Flutter, a mobile app SDK built with Dart, are deployed to app stores as AOT-compiled Dart code.[21]:

Isolates

To achieve concurrency, Dart uses isolates, which are independent workers that do not share memory, but instead use message passing. This is similar to Erlang actors. Every Dart program uses at least one isolate, which is the main isolate. Since Dart 2 the Dart web platform no longer supports isolates, and suggests developers use Web Workers instead.[22]

Snapshots

Snapshots are a core part of the Dart VM. Snapshots are files which store objects and other runtime data.

Script snapshots
Dart programs can be compiled into snapshot files. These files contain all of the program code and dependencies preparsed and ready to execute. This allows fast startups.
Full snapshots
The Dart core libraries can be compiled into a snapshot file which allows fast loading of the libraries. Most standard distributions of the main Dart VM have a prebuilt snapshot for the core libraries which is loaded at runtime.
Object snapshots
Dart is a very asynchronous language. With this, it uses isolates for concurrency. Since these are workers which pass messages, it needs a way to serialize a message. This is done using a snapshot, which is generated from a given object, and then this is transferred to another isolate for deserializing.

Native mobile apps

Google has introduced Flutter for native mobile app development on both Android and iOS.[23] Flutter is a mobile app SDK, complete with framework, widgets, and tools, that gives developers a way to build and deploy mobile apps. Flutter works with Firebase and other mobile app SDKs, and is open source.

Compiling to JavaScript

The Dart SDK contains two Dart-to-JavaScript compilers. During development, dartdevc supports quick refresh cycles. For the final version of an app, dart2js produces deployable JavaScript.[24]

The first compiler to generate JavaScript from Dart code was dartc, but it was deprecated. The second Dart-to-JavaScript compiler was Frog. It was written in Dart, but never implemented the full semantics of the language. The third Dart-to-JavaScript compiler was dart2js. An evolution of earlier compilers, dart2js is written in Dart and intended to implement the full Dart language specification and semantics.

On March 28, 2013, the Dart team posted an update on their blog addressing Dart code compiled to JavaScript with the dart2js compiler,[25] stating that it now runs faster than handwritten JavaScript on Chrome's V8 JavaScript engine for the DeltaBlue benchmark.[26]

Editors

On November 18, 2011, Google released Dart Editor, an open-source program based on Eclipse components, for Mac OS X, Windows, and Linux-based operating systems.[27] The editor supports syntax highlighting, code completion, JavaScript compiling, running web and server Dart applications, and debugging.

On August 13, 2012, Google announced the release of an Eclipse plugin for Dart development.[28]

On April 18, 2015, Google announced that the Dart Editor would be retired in favor of the JetBrains integrated development environment (IDE),[29] which is now the recommended IDE for the language. The Dart plugin[30] is available for IntelliJ IDEA, PyCharm, PhpStorm and WebStorm. This plugin supports many features such as syntax highlighting, code completion, analysis, refactoring, debugging, and more. Other plugins are available for editors like Sublime Text, Atom, Emacs, Vim and Visual Studio Code.[31]

Chrome Dev Editor

In 2013, the Chromium team began work on an open source, Chrome App-based development environment with a reusable library of GUI widgets, codenamed Spark.[32] The project was later renamed as Chrome Dev Editor.[33] It was built in Dart, and contained Spark which is powered by Polymer.[34]

In June 2015, Google transferred the CDE project to GitHub as a free software project and ceased active investment in CDE.[35]

DartPad

The Dart team created DartPad at the start of 2015, to provide an easier way to start using Dart. It is a fully online editor from which users can experiment with Dart application programming interfaces (APIs), and run Dart code. It provides syntax highlighting, code analysis, code completion, documentation, and HTML and CSS editing.[36]

SIMD

In 2013, John McCutchan announced[37] that he had created a performant interface to single instruction, multiple data (SIMD) instruction sets for Dart.

The interface consists of two types:

  • Float32×4, 4× single precision floating point values
  • Uint32×4, 4× 32-bit unsigned integer values

Instances of these types are immutable and in optimized code are mapped directly to SIMD registers. Operations expressed in Dart typically are compiled into one instruction with no overhead. This is similar to C and C++ intrinsics. Benchmarks for 4×4 matrix multiplication, 3D vertex transformation, and Mandelbrot set visualization show near 400% speedup compared to scalar code written in Dart.

Example

A Hello World example:

main() {
  print('Hello World!');
}

A function to calculate the nth Fibonacci number:

int fib(int n) => (n > 2) ? (fib(n - 1) + fib(n - 2)) : 1;
// this is a fibonacci function implementation with a ternary operator in Dart
// this code shall be read as:
// If int n > 2, return fib(n - 1) + fib(n - 2); 
// otherwise, return int 1 as result

void main() {
  print('fib(20) = ${fib(20)}');
}

A simple class:

// Import the math library to get access to the sqrt function.
import 'dart:math' as math;

// Create a class for Point.
class Point {

  // Final variables cannot be changed once they are assigned.
  // Create two instance variables.
  final num x, y;

  // A constructor, with syntactic sugar for setting instance variables.
  // The constructor has two mandatory parameters
  Point(this.x, this.y);

  // A named constructor with an initializer list.
  Point.origin()
      : x = 0,
        y = 0;

  // A method.
  num distanceTo(Point other) {
    var dx = x - other.x;
    var dy = y - other.y;
    return math.sqrt(dx * dx + dy * dy);
  }

  // Example of Operator Overloading
  Point operator +(Point other) => Point(x + other.x, y + other.y);
  // When you Instantiating a class such as Point, in Dart 2+, new is 
  // an optional word
}

// All Dart programs start with main().
void main() {
  // Instantiate point objects.
  var p1 = Point(10, 10);
  var p2 = Point.origin();
  var distance = p1.distanceTo(p2);
  print(distance);
}

Influences from other languages

Dart is a descendant of the ALGOL language family,[38] alongside C, Java, C#, JavaScript, and others.

The method cascade syntax, which provides a syntactic shortcut for invoking several methods one after another on the same object, is adopted from Smalltalk.

Dart's mixins were influenced by Strongtalk[39] and Ruby.

Dart makes use of isolates as a concurrency and security unit when structuring applications.[40] The Isolate concept builds upon the Actor model, which is most famously implemented in Erlang.

The Mirror API for performing controlled and secure reflection was first proposed in a paper[41] by Gilad Bracha (who is a member of the Dart team) and David Ungar and originally implemented in Self.

Criticism

Dart initially had a mixed reception and the Dart initiative has been criticized by some for fragmenting the web, due to the original plans to include a Dart VM in Chrome. Those plans were dropped to focus instead on compiling Dart to JavaScript.[42]

See also

References

  1. Kopec, David. Dart for Absolute Beginners. p. 56. ISBN 9781430264828. Retrieved 24 November 2015.
  2. Bak, Lars. "Dart: a language for structured web programming". Google Code Blog. Google. Retrieved 31 January 2016.
  3. https://github.com/dart-lang/sdk/releases
  4. https://github.com/dart-lang/sdk/releases
  5. https://www.dartlang.org/faq#q-is-dart-a-statically-typed-language
  6. "Web Languages and VMs: Fast Code is Always in Fashion. (V8, Dart) - Google I/O 2013". Google. Retrieved 22 December 2013.
  7. https://www.dartlang.org/
  8. https://flutter.io
  9. "A Tour of the Dart Language". www.dartlang.org. Retrieved 2018-08-09.
  10. https://www.dartlang.org/guides/language/sound-dart
  11. "Dart, a new programming language for structured web programming", GOTO conference (presentation) (opening keynote), Århus conference, 2011-10-10
  12. Ladd, Seth. "What is Dart". What is Dart?. O'Reilly. Retrieved August 16, 2014.
  13. "Dart 1.0: A stable SDK for structured web apps". news.dartlang.org. Retrieved 2018-08-08.
  14. Moore, Kevin (2018-08-07). "Announcing Dart 2 Stable and the Dart Web Platform". Dart. Retrieved 2018-08-08.
  15. "TC52 - Dart". Retrieved 2013-12-16.
  16. Anders Thorhauge Sandholm. "Dart News & Updates". dartlang.org.
  17. Anders Thorhauge Sandholm. "Dart News & Updates". dartlang.org.
  18. "Why?", Dart lang (FAQ), We designed Dart to be easy to write development tools for, well-suited to modern app development, and capable of high-performance implementations.
  19. "JavaScript as a compilation target: Making it fast" (PDF). Dartlang.org. Retrieved 2013-08-18.
  20. "An Introduction to the dart:io Library". Dartlang.org. Retrieved 2013-07-21.
  21. "Flutter FAQ". flutter.io. How does Flutter run my code on iOS?. Retrieved 2016-10-02.
  22. Moore, Kevin (February 23, 2018). "Dart2 Breaking Change: Removing web support for dart:mirrors and dart:isolate". Google Groups.
  23. Flutter
  24. https://webdev.dartlang.org/angular/guide/deployment
  25. Ladd, Seth (2013-03-28). "Dart News & Updates: Why dart2js produces faster JavaScript code from Dart". News.dartlang.org. Retrieved 2013-07-21.
  26. "Dart Performance". Dartlang.org. Retrieved 2013-07-21.
  27. "Google Releases Dart Editor for Windows, Mac OS X, and Linux".
  28. "Google Release Dart Eclipse Plugin".
  29. Ladd, Seth (2015-04-30). "The present and future of editors and IDEs for Dart". Dart News & Updates. Google. Retrieved 2015-05-18.
  30. "JetBrains Plugin Repository : Dart". Plugins.intellij.net. Retrieved 2013-07-21.
  31. "Dart Tools". www.dartlang.org. Retrieved 2016-11-15.
  32. Beaufort, François. "The chromium team is currently actively working".
  33. "A Chrome app based development environment".
  34. "Chrome Story: Spark, A Chrome App from Google is an IDE for Your Chromebook".
  35. Saroop, Sri. "Chrome Dev Editor: Announcements".
  36. Ladd, Seth (2015-05-06). "Announcing DartPad: A friction-free way to explore Dart code". Dart News & Updates. Google. Retrieved 2015-05-18.
  37. "Bringing SIMD to the web via Dart" (PDF).
  38. "Algol Family". c2.com.
  39. Bracha, Gilad; Griswold, David (September 1996). "Extending the Smalltalk Language with Mixins" (PDF). OOPSLA Workshop. OOPSLA.
  40. "The Essence of Google Dart: Building Applications, Snapshots, Isolates". InfoQ.
  41. Bracha, Gilad; Ungar, David (2004). "Mirrors: design principles for meta-level facilities of object-oriented programming languages" (PDF). ACM SIGPLAN Notices. ACM. 39 (10): 331–344. doi:10.1145/1035292.1029004. Retrieved 15 February 2014.
  42. Seth Ladd. "Dart News & Updates". dartlang.org.

Bibliography

  • Walrath, Kathy; Ladd, Seth (March 7, 2012). What is Dart? (1st ed.). O'Reilly Media. p. 20. ISBN 978-14493-32327.
  • Walrath, Kathy; Ladd, Seth (November 7, 2012). Dart: Up and Running (1st ed.). O'Reilly Media. p. 144. ISBN 978-1449330897.
  • Buckett, Chris (December 28, 2012). Dart in Action (1st ed.). Manning Publications. p. 475. ISBN 978-1617290862.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.