Discussion:
[dart-misc] When Dart will enabled in Google Chrome?
Alexey Solovey
2015-08-15 15:04:09 UTC
Permalink
Hello. Tell me please, when Dart will enabled in Google Chrome? I don't see
this feature even in dev version of chrome. Kept over 2 years. When will
Dart language in chrome?
I don't want compiling Dart to JS for Web applications. Dart are fastest
language.

Or... When in official Google Chrome will SIMD (not Dartium)? When Dart
learns compiling to ASM.js? When Dart learns compiling to modern ES6-7?
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Lex Berezhny
2015-08-15 15:18:38 UTC
Permalink
Dart will not be in Chrome, see here:

http://news.dartlang.org/2015/03/dart-for-entire-web.html
Post by Alexey Solovey
Hello. Tell me please, when Dart will enabled in Google Chrome? I don't
see this feature even in dev version of chrome. Kept over 2 years. When
will Dart language in chrome?
I don't want compiling Dart to JS for Web applications. Dart are fastest
language.
Or... When in official Google Chrome will SIMD (not Dartium)? When Dart
learns compiling to ASM.js? When Dart learns compiling to modern ES6-7?
--
For other discussions, see https://groups.google.com/a/dartlang.org/
For HOWTO questions, visit http://stackoverflow.com/tags/dart
To file a bug report or feature request, go to http://www.dartbug.com/new
To unsubscribe from this group and stop receiving emails from it, send an
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Jos Hirth
2015-08-15 21:10:43 UTC
Permalink
SIMD in V8 is on its way: https://code.google.com/p/v8/issues/detail?id=4124

Dart won't compile to Asm.js because it's a far less suitable compile
target for languages like Dart.

The experimental dev_compiler compiles to fairly readable ES6.
Post by Alexey Solovey
Hello. Tell me please, when Dart will enabled in Google Chrome? I don't
see this feature even in dev version of chrome. Kept over 2 years. When
will Dart language in chrome?
I don't want compiling Dart to JS for Web applications. Dart are fastest
language.
Or... When in official Google Chrome will SIMD (not Dartium)? When Dart
learns compiling to ASM.js? When Dart learns compiling to modern ES6-7?
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Alexey Solovey
2015-08-15 22:34:24 UTC
Permalink
Sad. I wanted make pseudo-pointers for Dart. See primitive.js by acterhd in
GitHub.

вПскресеМье, 16 августа 2015 г., 5:10:44 UTC+8 пПльзПватель Jos Hirth
Post by Jos Hirth
https://code.google.com/p/v8/issues/detail?id=4124
Dart won't compile to Asm.js because it's a far less suitable compile
target for languages like Dart.
The experimental dev_compiler compiles to fairly readable ES6.
Post by Alexey Solovey
Hello. Tell me please, when Dart will enabled in Google Chrome? I don't
see this feature even in dev version of chrome. Kept over 2 years. When
will Dart language in chrome?
I don't want compiling Dart to JS for Web applications. Dart are fastest
language.
Or... When in official Google Chrome will SIMD (not Dartium)? When Dart
learns compiling to ASM.js? When Dart learns compiling to modern ES6-7?
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Alexey Solovey
2015-08-15 22:36:56 UTC
Permalink
Give me class operator like
*a - extract value from class

And I want feature
&a - wrap variable into array


вПскресеМье, 16 августа 2015 г., 6:34:24 UTC+8 пПльзПватель Alexey Solovey
Post by Alexey Solovey
Sad. I wanted make pseudo-pointers for Dart. See primitive.js by acterhd
in GitHub.
вПскресеМье, 16 августа 2015 г., 5:10:44 UTC+8 пПльзПватель Jos Hirth
Post by Jos Hirth
https://code.google.com/p/v8/issues/detail?id=4124
Dart won't compile to Asm.js because it's a far less suitable compile
target for languages like Dart.
The experimental dev_compiler compiles to fairly readable ES6.
Post by Alexey Solovey
Hello. Tell me please, when Dart will enabled in Google Chrome? I don't
see this feature even in dev version of chrome. Kept over 2 years. When
will Dart language in chrome?
I don't want compiling Dart to JS for Web applications. Dart are fastest
language.
Or... When in official Google Chrome will SIMD (not Dartium)? When Dart
learns compiling to ASM.js? When Dart learns compiling to modern ES6-7?
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Alexey Solovey
2015-08-15 22:52:33 UTC
Permalink
I want operator for class such as value of. In my original ES6 code this
realized through setter and getters ".ptr". In dart I want this setter and
getter through operator like C.

var some = *pointerObj; //getter
*pointerObj = another; //setter

Intead of

var some = pointerObj.ptr; //getter
pointerObj.ptr = another; //setter

суббПта, 15 августа 2015 г., 23:04:09 UTC+8 пПльзПватель Alexey Solovey
Post by Alexey Solovey
Hello. Tell me please, when Dart will enabled in Google Chrome? I don't
see this feature even in dev version of chrome. Kept over 2 years. When
will Dart language in chrome?
I don't want compiling Dart to JS for Web applications. Dart are fastest
language.
Or... When in official Google Chrome will SIMD (not Dartium)? When Dart
learns compiling to ASM.js? When Dart learns compiling to modern ES6-7?
--
For other discussions, see https://groups.google.com/a/dartlang.org/

For HOWTO questions, visit http://stackoverflow.com/tags/dart

To file a bug report or feature request, go to http://www.dartbug.com/new

To unsubscribe from this group and stop receiving emails from it, send an email to misc+***@dartlang.org.
Continue reading on narkive:
Loading...