Tagged Questions

Dart is a structured class-based optionally typed programming language for building web applications.

learn more… | top users | synonyms

20
votes
3answers
823 views

What does Dart's output look like?

Dart, Google's new web language, says it supports outputting to JavaScript. What does a simple conversion look like?
14
votes
4answers
1k views

Will Dart support the use of existing JavaScript libraries?

I understand Dart compiles to JavaScript, and I read the Dart Language Spec on Libraries, although I didn't see an answer there. Also a search on their discussion form for the word 'existing' turns ...
13
votes
2answers
960 views

What is the benefit of the Dart language over JavaScript (Node.js)

I don't see the point of Dart in terms of the problem they are trying to solve. I read that it was created due to short comings of JavaScript, however those short comings were not given. Can someone ...
10
votes
2answers
358 views

Why can Dart's built-in List interface be instantiated?

As far as I've been able to tell, it's impossible to instantiate an interface in Dart. If I simply try to construct a new MyInterface(), with or without a constructor defined, I get a run-time error ...
9
votes
3answers
1k views

Is there Dart VM available?

Just read news that Google had announced an early preview of the new web programming language Dart. The documentation on the dartlang.org states: You will be able to run Dart code in several ways: ...
8
votes
3answers
690 views

Will Dart scripts run natively in the browser?

The Dart language looks like a very nice technology to build web applications for the web. For me it seems that there are no browsers available (yet?) which can run Dart scripts natively. Although ...
8
votes
1answer
323 views

Does Google Dart support mixins?

I've skimmed through the language documentation and it seems that the Google Dart does not support mixins (no method bodies in interfaces, no multiple inheritance, no Ruby-like modules). Am I right ...
6
votes
1answer
305 views

Are there any official plans to support Dart on Google App Engine?

Googling the web I haven't found anything that says something about whether Dart should eventually become supported by the Google App Engine hosting platform. Google is saying that Dart should also ...
5
votes
2answers
479 views

What is the role of Google's Dart programming language? [closed]

I am having a hard time understanding what the major purpose with Goole's programming language Dart is. What's it's role? why would I want to use it?
4
votes
3answers
193 views

What's the difference between “dart:html” and “dart:dom” package?

I'm starting with some of the Dart examples. Then I wanted to query the DOM with document.query('#someId') as described here, but it seems there was no query method in document. Also creating a new ...
4
votes
3answers
130 views

What is the best way to write unit-tests in Dart?

Dart doesn't seem to have a dedicated unit-testing framework yet. What is the best approach to write and run unit-tests? There are some very low-level examples in Dart source code (e.g. ...
4
votes
2answers
144 views

How do I create a canvas element in Dart?

I want to create a canvas element that I can add to an html document. The Dart recommendations seem to be to use dart:html rather then dart:dom, but as far as I can see, dart:html only contains an ...
4
votes
3answers
757 views

Where can I find the interpreter/compiler of Dart language?

How can I run a Dart application? Do I need a VM as in Java? I tried to embed the following code on a html page: <html> <body> <script type="application/dart"> main() { ...
4
votes
2answers
523 views

How can Google's DASH/DART get better performance?

I've read the article about Google's upcoming DASH/DART language, which I found quite interesting. One thing I stumbled upon is that they say they will remove the inherent performance problems of ...
3
votes
4answers
553 views

Which is the best resource to learn Google DART?

Apart from http://www.dartlang.org/ which is the best website to learn Google DART? Any tutorials? Any good book for it? Also, is it necessary to have any prior knowledge of Javascript to learn it?
3
votes
2answers
281 views

How can I evaluate Dart performance?

Google is launching a new language, promising that it has a better performance, but how can I evaluate performance in Dart source code? Let's take as example the "sun flower" drawFrame method: // ...
3
votes
2answers
144 views

How to perform runtime type checking in Dart?

Dart specification states: Reified type information reflects the types of objects at runtime and may always be queried by dynamic typechecking constructs (the analogs of instanceOf, casts, ...
2
votes
2answers
58 views

Console.log in Dart Language

How can I log into the browser console, like console.log in JavaScript, from the Dart language?
2
votes
1answer
49 views

Input Stream in Dart

How does one 'read' a file from a Dart program ? http://api.dartlang.org/index.html Dart would be running on the client-side and so taking files as input should be allowed.
2
votes
3answers
135 views

Why is javascript files generated by dart is so huge?

I have the following dart code: $ cat helloworld.dart main() => print('Hello world!'); $ The javascript code generated by the dart compiler for the above code is as follows: $ cat ...
2
votes
2answers
191 views

Implementing EventTarget on custom objects

Using Closure Library, you can give any object the ability to dispatch events extending goog.events.EventTarget. Is this currently possible using Dart libraries? I imagine it would look like this: ...
2
votes
1answer
162 views

How to use AJAX in Dart with async = true

I found a reference for an XMLHttpRequest final req = new XMLHttpRequest(); req.open('GET', '${Sections.home}/data/$name', false); req.send(); _htmlBody = req.responseText; Full Source ...
2
votes
2answers
497 views

Does Google Dart JavaScript converter support older browsers?

Does the Google Dart JavaScript converter support older browsers or is it only supporting modern browsers?
2
votes
2answers
1k views

Comparision of Javascript with Google Dart [closed]

Will I get replacement of node.js by google Dart, what do you say. I am pretty much familiar with javascript and jquery Also I am started using node.js in recent past What are the advantages and ...
1
vote
2answers
55 views

How to handle JSON in Dart

I wonder how does Dart handle JSON? More specifically: Can I access item in a JSON object and when, how? Can I convert Darts data structures like Set and Maps into JSON? Can I create a new JSON, ...
1
vote
2answers
50 views

How do you use a return value of true in Dart?

I get the following error when I try to execute the code below. Uncaught TypeError: Object true has no method 'dartObjectLocalStorage$getter' I started a Web Application in Dart Editor Version ...
1
vote
1answer
109 views

How to tell when the DOM is ready in Dart?

I want to get some information about some DOM elements after the page is ready, but I haven't figured out how to tell when this is. I've tried using document.on.contentLoaded and ...
1
vote
3answers
377 views

Skipping JavaScript and Going Straight to Dart [closed]

I understand that Dart has just been released, and while it's not entirely stable (along with the fact that its native code base is relatively small), I was curious to know if, for new developers ...
1
vote
1answer
91 views

Python error on building Dart on Windows

I'm trying to build Dart on Windows XP (according to the docs) but while using Python to do it, it encounters an error in the script file: D:\Documents and settings\xxx\Mes ...
1
vote
4answers
345 views

How can Dart language be used in a website today?

Is there a Javascript based interpreter it can run on, similar to CoffeeScript?
1
vote
4answers
697 views

How is google dart related to google closure?

I have just started using Google Closure and I have also heard about Google Dart which seems very similar. How are the two related?
0
votes
3answers
99 views

Representative application to learn a new web language [closed]

I am thinking of trying out a few new web programming languages. Writing a hello world program is nice, but does not give a good overview of the language. Do you have any suggestions of what could be ...
0
votes
2answers
161 views

Using Google Closure Library for Google DART?

How can the Google Closure UI Library be used with Google DART?
0
votes
3answers
348 views

why optional typing in Dart?

http://www.dartlang.org/docs/spec/dartLangSpec.pdf The language spec for Dart mentions below Dart supports optional typing based on interface types. The type system is unsound, due to the ...
0
votes
2answers
198 views

Will Dart work with ASP.Net?

I haven't been able to find any information concerning Dart and ASP.Net. I assume it will be compatible since you can run JavaScript with ASP.Net. Still, though, it would be good to make sure. Does ...
0
votes
1answer
365 views

Is there a converter of Javascript to Dart?

Is there an automatic converter of javascript code to Dart? Or is it too soon?
0
votes
0answers
147 views

How much effort to port JavaScript applications to Dart? [closed]

I'm curious how hard it will be, if you have a fairly large javascript app or library, to convert that app to Dart. I'm looking at the Dart documentation that came out a few hours ago, and trying to ...