Update stack_trace.dart (#85364)

This commit is contained in:
Dan Field 2021-06-25 20:25:20 -07:00 committed by GitHub
parent 8251f55256
commit 8e60c08bb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -151,8 +151,9 @@ class StackFrameEquality implements Equality<StackFrame> {
e1.method == e2.method;
}
// TODO(dnfield): This ignore shouldn't be necessary, see https://github.com/dart-lang/sdk/issues/46477
@override
int hash(StackFrame e) {
int hash(StackFrame e) { // ignore: avoid_renaming_method_parameters
return hashValues(e.number, e.packageScheme, e.package, e.packagePath, e.line, e.column, e.className, e.method);
}