Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart

Issue 3010613003: Simplify annotations in runtime check tests. (Closed)
Patch Set: Address code review comment Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart
diff --git a/pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart b/pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart
index 6b6d892f267ea99b8d00820e9f75ff0cd30fca90..5d40ac0e4e56cfefc258ae0ddf51d4c550c5b680 100644
--- a/pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart
+++ b/pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart
@@ -317,6 +317,8 @@ abstract class TypeInferenceEngineImpl extends TypeInferenceEngine {
kernelVariableDeclaration.isSemiSafe = true;
instrumentation?.record(Uri.parse(cls.fileUri), formal.fileOffset,
'checkFormal', new InstrumentationValueLiteral('semiSafe'));
+ instrumentation?.record(Uri.parse(cls.fileUri), formal.fileOffset,
+ 'checkInterface', new InstrumentationValueLiteral('semiTyped'));
}
}

Powered by Google App Engine
This is Rietveld 408576698