Skip to content

Commit

Permalink
Fix Dart2Wasm spelling (#2155)
Browse files Browse the repository at this point in the history
Abbreviation for WebAssembly is Wasm[1].

The Dart-to-Wasm backend is called `Dart2Wasm`, command line tool is
called `dart2wasm`.

Rest of the uses in `package:test` looks correct.

[1]: https://webassembly.github.io/spec/core/intro/introduction.html#introduction
  • Loading branch information
osa1 committed Dec 11, 2023
1 parent 7d61eef commit 43ff5bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/test_api/lib/src/backend/compiler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ enum Compiler {
dart2js('Dart2Js', 'dart2js'),

/// Experimental Dart to Wasm compiler.
dart2wasm('Dart2WASM', 'dart2wasm'),
dart2wasm('Dart2Wasm', 'dart2wasm'),

/// Compiles dart code to a native executable.
exe('Exe', 'exe'),
Expand Down

0 comments on commit 43ff5bf

Please sign in to comment.