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

Unified Diff: pkg/front_end/lib/src/fasta/testing/validating_instrumentation.dart

Issue 2839003002: Reorder parameters in Instrumentation.record(). (Closed)
Patch Set: Created 3 years, 8 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/testing/validating_instrumentation.dart
diff --git a/pkg/front_end/lib/src/fasta/testing/validating_instrumentation.dart b/pkg/front_end/lib/src/fasta/testing/validating_instrumentation.dart
index 2cc8d54e9e50991ec2c84213ed1b57a22568f6a7..4d2d759bdad306461e777d351f19df5f7700d5c8 100644
--- a/pkg/front_end/lib/src/fasta/testing/validating_instrumentation.dart
+++ b/pkg/front_end/lib/src/fasta/testing/validating_instrumentation.dart
@@ -141,7 +141,7 @@ class ValidatingInstrumentation implements Instrumentation {
@override
void record(
- String property, Uri uri, int offset, InstrumentationValue value) {
+ Uri uri, int offset, String property, InstrumentationValue value) {
var expectationsForUri = _unsatisfiedExpectations[uri];
if (expectationsForUri == null) return;
var expectationsAtOffset = expectationsForUri[offset];
« no previous file with comments | « pkg/front_end/lib/src/base/instrumentation.dart ('k') | pkg/front_end/lib/src/fasta/type_inference/type_inference_engine.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698