Skip to content

Commit 43ff5bf

Browse files
authored
Fix Dart2Wasm spelling (#2155)
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
1 parent 7d61eef commit 43ff5bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkgs/test_api/lib/src/backend/compiler.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ enum Compiler {
88
dart2js('Dart2Js', 'dart2js'),
99

1010
/// Experimental Dart to Wasm compiler.
11-
dart2wasm('Dart2WASM', 'dart2wasm'),
11+
dart2wasm('Dart2Wasm', 'dart2wasm'),
1212

1313
/// Compiles dart code to a native executable.
1414
exe('Exe', 'exe'),

0 commit comments

Comments
 (0)