Skip to content

Commit

Permalink
[pigeon] Fully-quality types in Equatable extension test
Browse files Browse the repository at this point in the history
  • Loading branch information
jmagman committed Jun 18, 2024
1 parent 937038c commit 5289f8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions packages/pigeon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## NEXT
* Fully-qualifies types in Equatable extension test.

## 20.0.1

* [cpp] Fixes handling of null class arguments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Flutter
import UIKit

@UIApplicationMain
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class MockEnumApi2Host: EnumApi2Host {
}
}

extension DataWithEnum: Equatable {
extension test_plugin.DataWithEnum: Swift.Equatable {
public static func == (lhs: DataWithEnum, rhs: DataWithEnum) -> Bool {
lhs.state == rhs.state
}
Expand Down

0 comments on commit 5289f8e

Please sign in to comment.