File tree Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ vars = {
34
34
# Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
35
35
# You can use //tools/dart/create_updated_flutter_deps.py to produce
36
36
# updated revision list of existing dependencies.
37
- 'dart_revision' : '6e015bd9cddb6073b5d59fccb1238227e5e834c7 ' ,
37
+ 'dart_revision' : '9c6e76468ca4b7886f0477af69b6fd0fb610b2e8 ' ,
38
38
39
39
# WARNING: DO NOT EDIT MANUALLY
40
40
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py
@@ -46,7 +46,7 @@ vars = {
46
46
'dart_dart_style_tag' : '1.3.8' ,
47
47
'dart_http_retry_tag' : '0.1.1' ,
48
48
'dart_http_throttle_tag' : '1.0.2' ,
49
- 'dart_intl_tag' : '0.16.1 ' ,
49
+ 'dart_intl_tag' : '0.17.0-nullsafety ' ,
50
50
'dart_linter_tag' : '0.1.121' ,
51
51
'dart_oauth2_tag' : '1.6.0' ,
52
52
'dart_protobuf_rev' : '3746c8fd3f2b0147623a8e3db89c3ff4330de760' ,
Original file line number Diff line number Diff line change 1
- Signature: 08da629cc55657469fbc030dd104af1f
1
+ Signature: df32ba1b81ccb800b01c3d2bf007a2a8
2
2
3
3
UNUSED LICENSES:
4
4
@@ -8430,6 +8430,7 @@ FILE: ../../../third_party/dart/runtime/bin/dartdev_isolate.cc
8430
8430
FILE: ../../../third_party/dart/runtime/bin/dartdev_isolate.h
8431
8431
FILE: ../../../third_party/dart/runtime/bin/exe_utils.cc
8432
8432
FILE: ../../../third_party/dart/runtime/bin/exe_utils.h
8433
+ FILE: ../../../third_party/dart/runtime/bin/ffi_test/ffi_test_functions_generated.cc
8433
8434
FILE: ../../../third_party/dart/runtime/bin/file_win.h
8434
8435
FILE: ../../../third_party/dart/runtime/bin/platform_macos.h
8435
8436
FILE: ../../../third_party/dart/runtime/bin/platform_macos_test.cc
Original file line number Diff line number Diff line change @@ -120,6 +120,11 @@ void _checkNonConsts() {
120
120
'line' : 14 ,
121
121
'column' : 26 ,
122
122
},
123
+ < String , dynamic > {
124
+ 'file' : 'file://$fixtures /lib/consts_and_non.dart' ,
125
+ 'line' : 17 ,
126
+ 'column' : 41 ,
127
+ },
123
128
< String , dynamic > {
124
129
'file' : 'file://$fixtures /lib/consts_and_non.dart' ,
125
130
'line' : 17 ,
Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ class IgnoreMe {
45
45
const IgnoreMe ([this .target]);
46
46
47
47
final Target target;
48
+
49
+ @override
50
+ String toString () => target.toString ();
48
51
}
49
52
50
53
class StaticConstInitializer {
Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ class IgnoreMe {
38
38
const IgnoreMe ([this .target]);
39
39
40
40
final Target target;
41
+
42
+ @override
43
+ String toString () => target.toString ();
41
44
}
42
45
43
46
void blah (Target target) {
You can’t perform that action at this time.
0 commit comments