commit | 18e41ef31c9734f586997a864f11ff5229fa3855 | [log] [tgz] |
---|---|---|
author | Joshua Litt <joshualitt@google.com> | Mon Oct 17 09:48:59 2022 +0000 |
committer | Commit Queue <dart-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Oct 17 09:48:59 2022 +0000 |
tree | 5d12ce7b08f89952f0cb646dad96affb26d48a58 | |
parent | 045cb1a711e6a4162b2ea7e340358065f4d42d9a [diff] |
[dart2wasm] Trivial fix for `Int8List`. Change-Id: I352b1d7522dfe2d3f4570e0f4a379ddf883d170a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/264264 Auto-Submit: Joshua Litt <joshualitt@google.com> Reviewed-by: Ömer Ağacan <omersa@google.com> Commit-Queue: Ömer Ağacan <omersa@google.com>
diff --git a/sdk/lib/_internal/vm/lib/typed_data_patch.dart b/sdk/lib/_internal/vm/lib/typed_data_patch.dart index 9e2f381..08db168 100644 --- a/sdk/lib/_internal/vm/lib/typed_data_patch.dart +++ b/sdk/lib/_internal/vm/lib/typed_data_patch.dart
@@ -2176,6 +2176,7 @@ } @pragma("vm:entry-point") +@pragma("wasm:entry-point") class _Int8List extends _TypedList with _IntListMixin, _TypedIntListMixin<Int8List> implements Int8List {