File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -314,9 +314,9 @@ class AsyncEnvironment {
314
314
315
315
for (var name in smaller.keys) {
316
316
if (! larger.containsKey (name)) continue ;
317
- if (type == "variable" &&
318
- newModule.variableIdentity (name) ==
319
- oldModule. variableIdentity ( name) ) {
317
+ if (type == "variable"
318
+ ? newModule.variableIdentity (name) == oldModule. variableIdentity (name)
319
+ : larger[name] == smaller[ name] ) {
320
320
continue ;
321
321
}
322
322
Original file line number Diff line number Diff line change 5
5
// DO NOT EDIT. This file was generated from async_environment.dart.
6
6
// See tool/grind/synchronize.dart for details.
7
7
//
8
- // Checksum: 90df4751419f38332128857f9e02d481cbd7e5a7
8
+ // Checksum: db31838dbc5c44989803274acb581263e98b488d
9
9
//
10
10
// ignore_for_file: unused_import
11
11
@@ -321,9 +321,9 @@ class Environment {
321
321
322
322
for (var name in smaller.keys) {
323
323
if (! larger.containsKey (name)) continue ;
324
- if (type == "variable" &&
325
- newModule.variableIdentity (name) ==
326
- oldModule. variableIdentity ( name) ) {
324
+ if (type == "variable"
325
+ ? newModule.variableIdentity (name) == oldModule. variableIdentity (name)
326
+ : larger[name] == smaller[ name] ) {
327
327
continue ;
328
328
}
329
329
You can’t perform that action at this time.
0 commit comments