Issue After I’ve installed packages, it seems we have this packages folder under every folder in the project. Is this really necessary? Can’t Dart just look up the directory chain to find the top level packages folder and be done
Continue readingTag: dart-editor
Package 'log4dart' is depended on from both sources 'hosted' and 'git'
Issue Trying to review a tutorial from the following links: http://blog.dartwatch.com/2012/03/building-client-server-dart-app-part-1.html http://blog.dartwatch.com/2012/03/building-client-server-dart-app-part-2.html Here’s my pubspec.yaml: name: myapp description: A sample application dependencies: log4dart: any mongo_dart: 0.0.1 unittest: { sdk: unittest } crimsonhttp: git: git://github.com/chrisbu/CrimsonHttp.git And here’s the error: Resolving dependencies…
Continue readingDart library and parts are not bi-directionally resolved
Issue I have a library, ‘foo’, which consists of a part, ‘bar’, and imports the dart:io library. The library and the part are declared as follows, in ‘foo.dart’: // in foo.dart library foo; import ‘dart:io’; part “bar.dart”; // resolves class
Continue readingPub install stalls on "running pub install" dialog
Issue I’m running pub install so I can use the intl package (I need to use the DateFormat class) that’s part of the dart sdk. I’ve installed other packages into my project such as the XML parser and presentation (similar
Continue readingHow do you open the command line tool in the Dart Editor?
Issue The one that you use to write things as “pub install” and such. Solution AFAIK Dart Editor does not provide an integrated shell. You’ll have to open whatever shell is available on your system, or install one of your
Continue readingHow to manually delete DartEditor Files directory or make changes to it
Issue I have pointed/opened dart folder, so. that, where Darteditors own program-files are, in Darteditors File window and begin to create one web program there. Clever? Is’nt it?:) I wanted to test one of my own programs there, for using
Continue readingWhy don't the Target 8 files implement the project as described in the tutorial?
Issue In Target 8: Define a Custom DOM Tag, the reader is told about custom DOM tags that can be created by extending other tags. A sample is described for an example called “x-converter” before listing the files as “These
Continue readingIs there an "Immediate Window" in the Dart Editor / Debugger?
Issue Is there any way to try Dart expressions and execute commands while in a debug breakpoint? Like in Chrome Developer Bar, Firebug or Visual Studio Immediate Window. Solution Unfortunately not yet. Star http://dartbug.com/3293 to track its progress. A similar
Continue readingWhat relevance do folders have in a dart project?
Issue When I create a sub folder in a Dart Project in Dart Editor, immediately a package subfolder is created inside this sub folder. I have not read anywhere that sub folders have a special meaning for the project structure,
Continue readingDart simple webcomponent confusion
Issue Somehow I could not build my very first Dart web components example. The project is very simple and taken from Seth blog. First the build.dart file should be places in root folder of the project (not in web/ folder)
Continue reading