| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +2 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
for Core-Library-Review requirement
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
static const Map<String, Encoding> _nameToEncoding = const <String, Encoding>{This makes it certain that we won't allow user-added encodings.
Probably for the best. They should not be modifiying global values.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
5 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: tests/ffi/run_isolate_group_run_test.dart
Insertions: 11, Deletions: 0.
The diff is too large to show. Please review the diff.
```
[sdk/vm] Make Encoding._nameToEncoding map const.
This allows use of Encoding class in isolategroup-bound callbacks.
TEST=run_isolate_group_run_test
BUG=https://github.com/dart-lang/sdk/issues/61541
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
() => Encoding.getByName("us-ascii")!.encode("123abc"),Late comment: Consider testing the object, not its behavior.
(This test would be accepted even if `Encoding.getByName` always returned `utf8` when run in an isolate group).
```dart
Expect.isTrue(
IsolateGroup.runSync(() => identical(Encoding.getByName("us-ascii"), ascii));
Expect.isTrue(
IsolateGroup.runSync(() => identical(Encoding.getByName("utf-8"), utf8));
```
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |