mirror of
https://github.com/flutter/packages.git
synced 2025-07-01 15:23:25 +08:00
[pigeon] Updates writeScoped and addScoped to disallow symbol-less use. (#3081)
* remove left over symbol-less scoped method calls * assert to enforce no nesting with scoped * changelog * fix version num * nits
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
## 7.0.3
|
||||||
|
|
||||||
|
* Updates scoped methods to prevent symbol-less use.
|
||||||
|
|
||||||
## 7.0.2
|
## 7.0.2
|
||||||
|
|
||||||
* [kotlin] Fixes a missed casting of not nullable Dart 'int' to Kotlin 64bit long.
|
* [kotlin] Fixes a missed casting of not nullable Dart 'int' to Kotlin 64bit long.
|
||||||
|
@ -849,17 +849,17 @@ flutter::EncodableValue ${api.name}::WrapError(const FlutterError& error) {
|
|||||||
indent.write('switch (type) ');
|
indent.write('switch (type) ');
|
||||||
indent.addScoped('{', '}', () {
|
indent.addScoped('{', '}', () {
|
||||||
for (final EnumeratedClass customClass in getCodecClasses(api, root)) {
|
for (final EnumeratedClass customClass in getCodecClasses(api, root)) {
|
||||||
indent.write('case ${customClass.enumeration}:');
|
indent.writeln('case ${customClass.enumeration}:');
|
||||||
indent.writeScoped('', '', () {
|
indent.nest(1, () {
|
||||||
indent.writeln(
|
indent.writeln(
|
||||||
'return flutter::CustomEncodableValue(${customClass.name}(std::get<flutter::EncodableList>(ReadValue(stream))));');
|
'return flutter::CustomEncodableValue(${customClass.name}(std::get<flutter::EncodableList>(ReadValue(stream))));');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
indent.write('default:');
|
indent.writeln('default:');
|
||||||
indent.writeScoped('', '', () {
|
indent.nest(1, () {
|
||||||
indent.writeln(
|
indent.writeln(
|
||||||
'return $_defaultCodecSerializer::ReadValueOfType(type, stream);');
|
'return $_defaultCodecSerializer::ReadValueOfType(type, stream);');
|
||||||
}, addTrailingNewline: false);
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
indent.newln();
|
indent.newln();
|
||||||
|
@ -669,8 +669,8 @@ void _writeCodec(Indent indent, String codecName, Api api, Root root) {
|
|||||||
indent.write('switch (type) ');
|
indent.write('switch (type) ');
|
||||||
indent.addScoped('{', '}', () {
|
indent.addScoped('{', '}', () {
|
||||||
for (final EnumeratedClass customClass in codecClasses) {
|
for (final EnumeratedClass customClass in codecClasses) {
|
||||||
indent.write('case ${customClass.enumeration}: ');
|
indent.writeln('case ${customClass.enumeration}: ');
|
||||||
indent.writeScoped('', '', () {
|
indent.nest(1, () {
|
||||||
indent.writeln(
|
indent.writeln(
|
||||||
'return ${customClass.name}.decode(readValue(buffer)!);');
|
'return ${customClass.name}.decode(readValue(buffer)!);');
|
||||||
});
|
});
|
||||||
|
@ -8,8 +8,10 @@ import 'dart:mirrors';
|
|||||||
|
|
||||||
import 'ast.dart';
|
import 'ast.dart';
|
||||||
|
|
||||||
/// The current version of pigeon. This must match the version in pubspec.yaml.
|
/// The current version of pigeon.
|
||||||
const String pigeonVersion = '7.0.2';
|
///
|
||||||
|
/// This must match the version in pubspec.yaml.
|
||||||
|
const String pigeonVersion = '7.0.3';
|
||||||
|
|
||||||
/// Read all the content from [stdin] to a String.
|
/// Read all the content from [stdin] to a String.
|
||||||
String readStdin() {
|
String readStdin() {
|
||||||
@ -81,8 +83,9 @@ class Indent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Scoped increase of the ident level. For the execution of [func] the
|
/// Scoped increase of the indent level.
|
||||||
/// indentation will be incremented.
|
///
|
||||||
|
/// For the execution of [func] the indentation will be incremented.
|
||||||
void addScoped(
|
void addScoped(
|
||||||
String? begin,
|
String? begin,
|
||||||
String? end,
|
String? end,
|
||||||
@ -90,6 +93,8 @@ class Indent {
|
|||||||
bool addTrailingNewline = true,
|
bool addTrailingNewline = true,
|
||||||
int nestCount = 1,
|
int nestCount = 1,
|
||||||
}) {
|
}) {
|
||||||
|
assert(begin != '' || end != '',
|
||||||
|
'Use nest for indentation without any decoration');
|
||||||
if (begin != null) {
|
if (begin != null) {
|
||||||
_sink.write(begin + newline);
|
_sink.write(begin + newline);
|
||||||
}
|
}
|
||||||
@ -109,12 +114,15 @@ class Indent {
|
|||||||
Function func, {
|
Function func, {
|
||||||
bool addTrailingNewline = true,
|
bool addTrailingNewline = true,
|
||||||
}) {
|
}) {
|
||||||
|
assert(begin != '' || end != '',
|
||||||
|
'Use nest for indentation without any decoration');
|
||||||
addScoped(str() + (begin ?? ''), end, func,
|
addScoped(str() + (begin ?? ''), end, func,
|
||||||
addTrailingNewline: addTrailingNewline);
|
addTrailingNewline: addTrailingNewline);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Scoped increase of the ident level. For the execution of [func] the
|
/// Scoped increase of the indent level.
|
||||||
/// indentation will be incremented by the given amount.
|
///
|
||||||
|
/// For the execution of [func] the indentation will be incremented by the given amount.
|
||||||
void nest(int count, Function func) {
|
void nest(int count, Function func) {
|
||||||
inc(count);
|
inc(count);
|
||||||
func(); // ignore: avoid_dynamic_calls
|
func(); // ignore: avoid_dynamic_calls
|
||||||
@ -270,9 +278,10 @@ void addLines(Indent indent, Iterable<String> lines, {String? linePrefix}) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Recursively merges [modification] into [base]. In other words, whenever
|
/// Recursively merges [modification] into [base].
|
||||||
/// there is a conflict over the value of a key path, [modification]'s value for
|
///
|
||||||
/// that key path is selected.
|
/// In other words, whenever there is a conflict over the value of a key path,
|
||||||
|
/// [modification]'s value for that key path is selected.
|
||||||
Map<String, Object> mergeMaps(
|
Map<String, Object> mergeMaps(
|
||||||
Map<String, Object> base,
|
Map<String, Object> base,
|
||||||
Map<String, Object> modification,
|
Map<String, Object> modification,
|
||||||
|
@ -717,16 +717,16 @@ Result<$returnType> $resultName =
|
|||||||
indent.write('switch (type) ');
|
indent.write('switch (type) ');
|
||||||
indent.addScoped('{', '}', () {
|
indent.addScoped('{', '}', () {
|
||||||
for (final EnumeratedClass customClass in codecClasses) {
|
for (final EnumeratedClass customClass in codecClasses) {
|
||||||
indent.write('case (byte) ${customClass.enumeration}: ');
|
indent.writeln('case (byte) ${customClass.enumeration}:');
|
||||||
indent.writeScoped('', '', () {
|
indent.nest(1, () {
|
||||||
indent.writeln(
|
indent.writeln(
|
||||||
'return ${customClass.name}.fromList((ArrayList<Object>) readValue(buffer));');
|
'return ${customClass.name}.fromList((ArrayList<Object>) readValue(buffer));');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
indent.write('default:');
|
indent.writeln('default:');
|
||||||
indent.addScoped('', '', () {
|
indent.nest(1, () {
|
||||||
indent.writeln('return super.readValueOfType(type, buffer);');
|
indent.writeln('return super.readValueOfType(type, buffer);');
|
||||||
}, addTrailingNewline: false);
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
indent.newln();
|
indent.newln();
|
||||||
|
@ -722,8 +722,8 @@ static id GetNullableObjectAtIndex(NSArray *array, NSInteger key) {
|
|||||||
indent.write('switch (type) ');
|
indent.write('switch (type) ');
|
||||||
indent.addScoped('{', '}', () {
|
indent.addScoped('{', '}', () {
|
||||||
for (final EnumeratedClass customClass in codecClasses) {
|
for (final EnumeratedClass customClass in codecClasses) {
|
||||||
indent.write('case ${customClass.enumeration}: ');
|
indent.writeln('case ${customClass.enumeration}: ');
|
||||||
indent.writeScoped('', '', () {
|
indent.nest(1, () {
|
||||||
indent.writeln(
|
indent.writeln(
|
||||||
'return [${_className(options.prefix, customClass.name)} fromList:[self readValue]];');
|
'return [${_className(options.prefix, customClass.name)} fromList:[self readValue]];');
|
||||||
});
|
});
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
@ -146,10 +146,8 @@ class _MessageApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return MessageSearchReply.decode(readValue(buffer)!);
|
return MessageSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return MessageSearchRequest.decode(readValue(buffer)!);
|
return MessageSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -245,13 +243,10 @@ class _MessageNestedApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return MessageNested.decode(readValue(buffer)!);
|
return MessageNested.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return MessageSearchReply.decode(readValue(buffer)!);
|
return MessageSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return MessageSearchRequest.decode(readValue(buffer)!);
|
return MessageSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -320,10 +315,8 @@ class _MessageFlutterSearchApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return MessageSearchReply.decode(readValue(buffer)!);
|
return MessageSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return MessageSearchRequest.decode(readValue(buffer)!);
|
return MessageSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, unnecessary_import
|
||||||
// ignore_for_file: avoid_relative_lib_imports
|
// ignore_for_file: avoid_relative_lib_imports
|
||||||
@ -34,10 +34,8 @@ class _TestHostApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return MessageSearchReply.decode(readValue(buffer)!);
|
return MessageSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return MessageSearchRequest.decode(readValue(buffer)!);
|
return MessageSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -119,13 +117,10 @@ class _TestNestedApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return MessageNested.decode(readValue(buffer)!);
|
return MessageNested.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return MessageSearchReply.decode(readValue(buffer)!);
|
return MessageSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return MessageSearchRequest.decode(readValue(buffer)!);
|
return MessageSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
package com.example.alternate_language_test_plugin;
|
package com.example.alternate_language_test_plugin;
|
||||||
@ -724,13 +724,10 @@ public class CoreTests {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case (byte) 128:
|
case (byte) 128:
|
||||||
return AllNullableTypes.fromList((ArrayList<Object>) readValue(buffer));
|
return AllNullableTypes.fromList((ArrayList<Object>) readValue(buffer));
|
||||||
|
|
||||||
case (byte) 129:
|
case (byte) 129:
|
||||||
return AllNullableTypesWrapper.fromList((ArrayList<Object>) readValue(buffer));
|
return AllNullableTypesWrapper.fromList((ArrayList<Object>) readValue(buffer));
|
||||||
|
|
||||||
case (byte) 130:
|
case (byte) 130:
|
||||||
return AllTypes.fromList((ArrayList<Object>) readValue(buffer));
|
return AllTypes.fromList((ArrayList<Object>) readValue(buffer));
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -2139,13 +2136,10 @@ public class CoreTests {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case (byte) 128:
|
case (byte) 128:
|
||||||
return AllNullableTypes.fromList((ArrayList<Object>) readValue(buffer));
|
return AllNullableTypes.fromList((ArrayList<Object>) readValue(buffer));
|
||||||
|
|
||||||
case (byte) 129:
|
case (byte) 129:
|
||||||
return AllNullableTypesWrapper.fromList((ArrayList<Object>) readValue(buffer));
|
return AllNullableTypesWrapper.fromList((ArrayList<Object>) readValue(buffer));
|
||||||
|
|
||||||
case (byte) 130:
|
case (byte) 130:
|
||||||
return AllTypes.fromList((ArrayList<Object>) readValue(buffer));
|
return AllTypes.fromList((ArrayList<Object>) readValue(buffer));
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
#import "CoreTests.gen.h"
|
#import "CoreTests.gen.h"
|
||||||
@ -221,13 +221,10 @@ static id GetNullableObjectAtIndex(NSArray *array, NSInteger key) {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return [AllNullableTypes fromList:[self readValue]];
|
return [AllNullableTypes fromList:[self readValue]];
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return [AllNullableTypesWrapper fromList:[self readValue]];
|
return [AllNullableTypesWrapper fromList:[self readValue]];
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return [AllTypes fromList:[self readValue]];
|
return [AllTypes fromList:[self readValue]];
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return [super readValueOfType:type];
|
return [super readValueOfType:type];
|
||||||
}
|
}
|
||||||
@ -1136,13 +1133,10 @@ void HostIntegrationCoreApiSetup(id<FlutterBinaryMessenger> binaryMessenger,
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return [AllNullableTypes fromList:[self readValue]];
|
return [AllNullableTypes fromList:[self readValue]];
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return [AllNullableTypesWrapper fromList:[self readValue]];
|
return [AllNullableTypesWrapper fromList:[self readValue]];
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return [AllTypes fromList:[self readValue]];
|
return [AllTypes fromList:[self readValue]];
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return [super readValueOfType:type];
|
return [super readValueOfType:type];
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
@ -222,13 +222,10 @@ class _HostIntegrationCoreApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return AllNullableTypes.decode(readValue(buffer)!);
|
return AllNullableTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return AllTypes.decode(readValue(buffer)!);
|
return AllTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -1253,13 +1250,10 @@ class _FlutterIntegrationCoreApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return AllNullableTypes.decode(readValue(buffer)!);
|
return AllNullableTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return AllTypes.decode(readValue(buffer)!);
|
return AllTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
@ -127,16 +127,12 @@ class _ApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return FlutterSearchReplies.decode(readValue(buffer)!);
|
return FlutterSearchReplies.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return FlutterSearchReply.decode(readValue(buffer)!);
|
return FlutterSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return FlutterSearchRequest.decode(readValue(buffer)!);
|
return FlutterSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 131:
|
case 131:
|
||||||
return FlutterSearchRequests.decode(readValue(buffer)!);
|
return FlutterSearchRequests.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
@ -128,13 +128,10 @@ class _NonNullFieldHostApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return ExtraData.decode(readValue(buffer)!);
|
return ExtraData.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return NonNullFieldSearchReply.decode(readValue(buffer)!);
|
return NonNullFieldSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return NonNullFieldSearchRequest.decode(readValue(buffer)!);
|
return NonNullFieldSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -203,13 +200,10 @@ class _NonNullFieldFlutterApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return ExtraData.decode(readValue(buffer)!);
|
return ExtraData.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return NonNullFieldSearchReply.decode(readValue(buffer)!);
|
return NonNullFieldSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return NonNullFieldSearchRequest.decode(readValue(buffer)!);
|
return NonNullFieldSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
@ -108,10 +108,8 @@ class _NullFieldsHostApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return NullFieldsSearchReply.decode(readValue(buffer)!);
|
return NullFieldsSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return NullFieldsSearchRequest.decode(readValue(buffer)!);
|
return NullFieldsSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -177,10 +175,8 @@ class _NullFieldsFlutterApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return NullFieldsSearchReply.decode(readValue(buffer)!);
|
return NullFieldsSearchReply.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return NullFieldsSearchRequest.decode(readValue(buffer)!);
|
return NullFieldsSearchRequest.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import
|
||||||
|
|
||||||
@ -222,13 +222,10 @@ class _HostIntegrationCoreApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return AllNullableTypes.decode(readValue(buffer)!);
|
return AllNullableTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return AllTypes.decode(readValue(buffer)!);
|
return AllTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
@ -1253,13 +1250,10 @@ class _FlutterIntegrationCoreApiCodec extends StandardMessageCodec {
|
|||||||
switch (type) {
|
switch (type) {
|
||||||
case 128:
|
case 128:
|
||||||
return AllNullableTypes.decode(readValue(buffer)!);
|
return AllNullableTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
return AllNullableTypesWrapper.decode(readValue(buffer)!);
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return AllTypes.decode(readValue(buffer)!);
|
return AllTypes.decode(readValue(buffer)!);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return super.readValueOfType(type, buffer);
|
return super.readValueOfType(type, buffer);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
package com.example.test_plugin
|
package com.example.test_plugin
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
import Foundation
|
import Foundation
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
import Foundation
|
import Foundation
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
#undef _HAS_EXCEPTIONS
|
#undef _HAS_EXCEPTIONS
|
||||||
@ -488,15 +488,12 @@ flutter::EncodableValue HostIntegrationCoreApiCodecSerializer::ReadValueOfType(
|
|||||||
case 128:
|
case 128:
|
||||||
return flutter::CustomEncodableValue(AllNullableTypes(
|
return flutter::CustomEncodableValue(AllNullableTypes(
|
||||||
std::get<flutter::EncodableList>(ReadValue(stream))));
|
std::get<flutter::EncodableList>(ReadValue(stream))));
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return flutter::CustomEncodableValue(AllNullableTypesWrapper(
|
return flutter::CustomEncodableValue(AllNullableTypesWrapper(
|
||||||
std::get<flutter::EncodableList>(ReadValue(stream))));
|
std::get<flutter::EncodableList>(ReadValue(stream))));
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return flutter::CustomEncodableValue(
|
return flutter::CustomEncodableValue(
|
||||||
AllTypes(std::get<flutter::EncodableList>(ReadValue(stream))));
|
AllTypes(std::get<flutter::EncodableList>(ReadValue(stream))));
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return flutter::StandardCodecSerializer::ReadValueOfType(type, stream);
|
return flutter::StandardCodecSerializer::ReadValueOfType(type, stream);
|
||||||
}
|
}
|
||||||
@ -1960,15 +1957,12 @@ FlutterIntegrationCoreApiCodecSerializer::ReadValueOfType(
|
|||||||
case 128:
|
case 128:
|
||||||
return flutter::CustomEncodableValue(AllNullableTypes(
|
return flutter::CustomEncodableValue(AllNullableTypes(
|
||||||
std::get<flutter::EncodableList>(ReadValue(stream))));
|
std::get<flutter::EncodableList>(ReadValue(stream))));
|
||||||
|
|
||||||
case 129:
|
case 129:
|
||||||
return flutter::CustomEncodableValue(AllNullableTypesWrapper(
|
return flutter::CustomEncodableValue(AllNullableTypesWrapper(
|
||||||
std::get<flutter::EncodableList>(ReadValue(stream))));
|
std::get<flutter::EncodableList>(ReadValue(stream))));
|
||||||
|
|
||||||
case 130:
|
case 130:
|
||||||
return flutter::CustomEncodableValue(
|
return flutter::CustomEncodableValue(
|
||||||
AllTypes(std::get<flutter::EncodableList>(ReadValue(stream))));
|
AllTypes(std::get<flutter::EncodableList>(ReadValue(stream))));
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return flutter::StandardCodecSerializer::ReadValueOfType(type, stream);
|
return flutter::StandardCodecSerializer::ReadValueOfType(type, stream);
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Use of this source code is governed by a BSD-style license that can be
|
// Use of this source code is governed by a BSD-style license that can be
|
||||||
// found in the LICENSE file.
|
// found in the LICENSE file.
|
||||||
//
|
//
|
||||||
// Autogenerated from Pigeon (v7.0.2), do not edit directly.
|
// Autogenerated from Pigeon (v7.0.3), do not edit directly.
|
||||||
// See also: https://pub.dev/packages/pigeon
|
// See also: https://pub.dev/packages/pigeon
|
||||||
|
|
||||||
#ifndef PIGEON_CORE_TESTS_GEN_H_
|
#ifndef PIGEON_CORE_TESTS_GEN_H_
|
||||||
|
@ -2,7 +2,7 @@ name: pigeon
|
|||||||
description: Code generator tool to make communication between Flutter and the host platform type-safe and easier.
|
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
|
repository: https://github.com/flutter/packages/tree/main/packages/pigeon
|
||||||
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apigeon
|
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apigeon
|
||||||
version: 7.0.2 # This must match the version in lib/generator_tools.dart
|
version: 7.0.3 # This must match the version in lib/generator_tools.dart
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.12.0 <3.0.0"
|
sdk: ">=2.12.0 <3.0.0"
|
||||||
|
Reference in New Issue
Block a user