From 43ff5bf9e25330aec1144bf14ef2a22fc95cda57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96mer=20Sinan=20A=C4=9Facan?= Date: Mon, 11 Dec 2023 16:10:58 +0100 Subject: [PATCH] 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 --- pkgs/test_api/lib/src/backend/compiler.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/test_api/lib/src/backend/compiler.dart b/pkgs/test_api/lib/src/backend/compiler.dart index 8e913b61d..41c253de3 100644 --- a/pkgs/test_api/lib/src/backend/compiler.dart +++ b/pkgs/test_api/lib/src/backend/compiler.dart @@ -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'),