-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fasta][nnbd] Print NNBD type modifiers in Kernel's text representation
Change-Id: I48c43858094e2b7264a15be05238bfc3dadd5ecb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/108264 Commit-Queue: Dmitry Stefantsov <[email protected]> Reviewed-by: Johnni Winther <[email protected]>
- Loading branch information
1 parent
776f2d3
commit 20e4c74
Showing
4,564 changed files
with
40,157 additions
and
39,858 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/class_capture.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr() → dynamic | ||
return () → dart.core::int { | ||
return () → dart.core::int* { | ||
return this.{main::B::x}.{dart.core::num::+}(this.{main::B::y}); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/class_type_param_bound.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return main::hasBound<main::C::T>(); | ||
return main::hasBound<main::C::T*>(); |
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/class_type_param_bound_2.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return main::hasBound<main::C::T>(); | ||
return main::hasBound<main::C::T*>(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/class_type_param_reference.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return x is main::A::T; | ||
return x is main::A::T*; |
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/class_type_param_reference_arg.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return main::id<main::A::T>(x as{TypeError} main::A::T); | ||
return main::id<main::A::T*>(x as{TypeError} main::A::T*); |
2 changes: 1 addition & 1 deletion
2
...t_end/testcases/expression/class_type_param_reference_arg_inferred.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return () → dart.core::Null { | ||
return () → dart.core::Null* { | ||
x = main::id<dynamic>(x); | ||
}; |
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/class_type_param_reference_ctor.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return new main::A::•<main::A::T>(); | ||
return new main::A::•<main::A::T*>(); |
2 changes: 1 addition & 1 deletion
2
..._end/testcases/expression/class_type_param_reference_ctor_inferred.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr(dynamic x) → dynamic | ||
return () → dart.core::Null { | ||
return () → dart.core::Null* { | ||
x = new main::A::•<dynamic>(); | ||
}; |
4 changes: 2 additions & 2 deletions
4
pkg/front_end/testcases/expression/class_type_param_reference_var.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr() → dynamic | ||
return () → main::A::T { | ||
main::A::T k = null; | ||
return () → main::A::T* { | ||
main::A::T* k = null; | ||
return k; | ||
}; |
2 changes: 1 addition & 1 deletion
2
pkg/front_end/testcases/expression/core_lib_internal.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Errors: { | ||
} | ||
method /* from org-dartlang-debug:synthetic_debug_expression */ debugExpr() → dynamic | ||
return null is dart.collection::Queue<dynamic>; | ||
return null is dart.collection::Queue<dynamic>*; |
6 changes: 3 additions & 3 deletions
6
pkg/front_end/testcases/expression/from_vm_cc_linked_hash_map.expression.yaml.expect
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.