Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/pigeon/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 26.3.2

* Updates `analyzer` dependency to support version 10.

## 26.3.1

* Fixes dartdoc comments that accidentally used HTML.
Expand Down
2 changes: 1 addition & 1 deletion packages/pigeon/lib/src/generator_tools.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import 'generator.dart';
/// The current version of pigeon.
///
/// This must match the version in pubspec.yaml.
const String pigeonVersion = '26.3.1';
const String pigeonVersion = '26.3.2';

/// Default plugin package name.
const String defaultPluginPackageName = 'dev.flutter.pigeon';
Expand Down
8 changes: 6 additions & 2 deletions packages/pigeon/lib/src/pigeon_lib_internal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1922,10 +1922,14 @@ class RootBuilder extends dart_ast_visitor.RecursiveAstVisitor<Object?> {
// resolved return type, via
// `node.declaredFragment!.element.returnType`.
String erroneousDeclaration = node.name.lexeme;
final dart_ast.AstNode? enclosingDeclaration = node.parent;
dart_ast.AstNode? enclosingDeclaration = node.parent;
while (enclosingDeclaration != null &&
enclosingDeclaration is! dart_ast.ClassDeclaration) {
enclosingDeclaration = enclosingDeclaration.parent;
}
if (enclosingDeclaration is dart_ast.ClassDeclaration) {
erroneousDeclaration =
'${enclosingDeclaration.name}.$erroneousDeclaration';
'${enclosingDeclaration.name.lexeme}.$erroneousDeclaration';
}
_errors.add(
Error(
Expand Down
5 changes: 3 additions & 2 deletions packages/pigeon/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: pigeon
description: Code generator tool to make communication between Flutter and the host platform type-safe and easier.
repository: https://github.com/flutter/packages/tree/main/packages/pigeon
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pigeon%22
version: 26.3.1 # This must match the version in lib/src/generator_tools.dart
version: 26.3.2 # This must match the version in lib/src/generator_tools.dart

environment:
sdk: ^3.9.0

dependencies:
analyzer: ">=8.0.0 <10.0.0"
analyzer: ">=8.0.0 <11.0.0"
args: ^2.5.0
code_builder: ^4.10.0
collection: ^1.15.0
Expand All @@ -27,3 +27,4 @@ topics:
- interop
- platform-channels
- plugin-development

Loading