[ddc] Cleanup dynamic calls in native_typed_data

Change-Id: I6a3b709addf59fbde09d829efed43028d71ef7d2
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/355620
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Commit-Queue: Nicholas Shahan <nshahan@google.com>
This commit is contained in:
Nicholas Shahan 2024-03-06 00:51:15 +00:00 committed by Commit Queue
parent be5a06874e
commit 5e03c497e9
2 changed files with 1 additions and 4 deletions

View file

@ -25,9 +25,6 @@
"Dynamic access of 'isNotEmpty'.": 1,
"Dynamic invocation of 'allMatches'.": 1
},
"sdk/lib/_internal/js_dev_runtime/private/native_typed_data.dart": {
"Dynamic invocation of '|'.": 3
},
"sdk/lib/_internal/js_dev_runtime/patch/convert_patch.dart": {
"Dynamic invocation of 'clear'.": 1
},

View file

@ -1319,7 +1319,7 @@ final class NativeFloat32x4 implements Float32x4 {
/// Extract the sign bit from each lane return them in the first 4 bits.
int get signMask {
var view = _uint32view;
var mx, my, mz, mw;
int mx, my, mz, mw;
_list[0] = x;
_list[1] = y;
_list[2] = z;