ceylon-dart icon indicating copy to clipboard operation
ceylon-dart copied to clipboard

Wrong comments in new run.ceylon

Open jkleiser opened this issue 9 years ago • 1 comments

When I do

ceylon new simple --module-name=com.foo.bar fooBar

and then take a look at the run.ceylon, it contains comments like these:

// on the command line compile with "ceylon compile com.foo.bar" or "ant compile"
// and execute with "ceylon compile com.foo.bar/1.0.0" or "ant run"

I think they should have been like this:

// on the command line compile with "ceylon compile-dart"
// and execute with "ceylon run-dart com.foo.bar"

I have not had the chance to try ant.

jkleiser avatar Dec 02 '15 09:12 jkleiser

@jkleiser I'm not sure what can be done here. ceylon new is something that ships with Ceylon 1.2.0, and is not Dart specific, so I think compile and run are used instead of the js and dart variations since that's what most people want, and to avoid being overly verbose. I guess if we can come up with something better, we can file a bug against the main Ceylon project.

I did add a note about ant and Eclipse to the readme. The are not currently supported for Dart.

jvasileff avatar Dec 02 '15 14:12 jvasileff