Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Add ignores.
  • Loading branch information
kallentu committed Oct 25, 2024
commit 080751138b7c63a52386434dfa4c9b602e3ff6ad
6 changes: 6 additions & 0 deletions packages/process/lib/src/interface/process_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ abstract class ProcessManager {
/// The following code uses `start` to grep for `main` in the
/// file `test.dart` on Linux.
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// ProcessManager mgr = new LocalProcessManager();
/// mgr.start(['grep', '-i', 'main', 'test.dart']).then((process) {
/// stdout.addStream(process.stdout);
Expand Down Expand Up @@ -130,6 +133,9 @@ abstract class ProcessManager {
/// The following code uses `run` to grep for `main` in the
/// file `test.dart` on Linux.
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// ProcessManager mgr = new LocalProcessManager();
/// mgr.run('grep', ['-i', 'main', 'test.dart']).then((result) {
/// stdout.write(result.stdout);
Expand Down
18 changes: 18 additions & 0 deletions packages/rfw/lib/src/dart/binary.dart
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ Uint8List encodeLibraryBlob(RemoteWidgetLibrary value) {
///
/// For example, the string "Hello" would be encoded as:
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// 05 00 00 00 00 00 00 00 48 65 6C 6C 6F
///
/// * Lists are encoded as an integer length, followed by that many values
Expand All @@ -124,13 +127,19 @@ Uint8List encodeLibraryBlob(RemoteWidgetLibrary value) {
/// followed by the value (tagged lists). For example, a list of integers with
/// the values 1 and 2 in that order would be encoded as:
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// 02 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00
/// 02 00 00 00 00 00 00 00
///
/// A list of arbitrary values that happens to contain one string "Hello"
/// would be encoded as follows; 0x04 is the tag for "String" (the full list
/// of tags is described below):
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// 01 00 00 00 00 00 00 00 04 05 00 00 00 00 00 00
/// 00 48 65 6C 6C 6F
///
Expand All @@ -147,6 +156,9 @@ Uint8List encodeLibraryBlob(RemoteWidgetLibrary value) {
/// strings, so they are untagged) is encoded as follows (0x02 is the tag for
/// integers):
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// 01 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00
/// 61 02 0F 00 00 00 00 00 00 00
///
Expand All @@ -159,6 +171,9 @@ Uint8List encodeLibraryBlob(RemoteWidgetLibrary value) {
/// one of the subparts of the imported library name. For example, `import
/// a.b` is encoded as:
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// 02 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00
/// 61 01 00 00 00 00 00 00 00 62
///
Expand Down Expand Up @@ -230,6 +245,9 @@ Uint8List encodeLibraryBlob(RemoteWidgetLibrary value) {
///
/// ...is encoded as follows (including the tag for the switch itself):
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// 0F 0A 01 00 00 00 00 00 00 00 61 03 00 00 00 00
/// 00 00 00 02 00 00 00 00 00 00 00 00 04 01 00 00
/// 00 00 00 00 00 7A 02 01 00 00 00 00 00 00 00 04
Expand Down
6 changes: 6 additions & 0 deletions packages/rfw/lib/src/flutter/material_widgets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,16 @@ import 'runtime.dart';
/// be supported. As a result, the following `ButtonBar` parameters are no longer
/// supported:
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// * `buttonMinWidth`
/// * `buttonHeight`
/// * `buttonAlignedDropdown`
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// It is recommended to use the [OverflowBar] widget.
///
/// Some features are not supported:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ class HttpRequestFactory {
///
/// The following is equivalent to the [getString] sample above:
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// var name = Uri.encodeQueryComponent('John');
/// var id = Uri.encodeQueryComponent('42');
/// HttpRequest.request('users.json?name=$name&id=$id')
Expand All @@ -48,6 +51,9 @@ class HttpRequestFactory {
///
/// Here's an example of submitting an entire form with [FormData].
///
// TODO(kallentu): Remove ignore and fix when stable is bumped.
// https://github.com/flutter/flutter/issues/157620
// ignore: missing_code_block_language_in_doc_comment
/// var myForm = querySelector('form#myForm');
/// var data = new FormData(myForm);
/// HttpRequest.request('/submit', method: 'POST', sendData: data)
Expand Down