| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 360a5c40cea511e14e29c6b64f72531aee273e77..db0c5759b8fcb7daf772bf60902d1359d227449b 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -35632,7 +35632,7 @@ class _JsDeserializer extends _Deserializer {
|
| // The receiver is JS.
|
| class _JsSendPortSync implements SendPortSync {
|
|
|
| - num _id;
|
| + final num _id;
|
| _JsSendPortSync(this._id);
|
|
|
| callSync(var message) {
|
| @@ -35802,7 +35802,7 @@ typedef void _MicrotaskCallback();
|
| */
|
| abstract class _MicrotaskScheduler {
|
| bool _nextMicrotaskFrameScheduled = false;
|
| - _MicrotaskCallback _callback;
|
| + final _MicrotaskCallback _callback;
|
|
|
| _MicrotaskScheduler(this._callback);
|
|
|
|
|