aboutsummaryrefslogtreecommitdiff
path: root/arg_picker/src/parselib
diff options
context:
space:
mode:
Diffstat (limited to 'arg_picker/src/parselib')
-rw-r--r--arg_picker/src/parselib/arg_matcher.rs1
-rw-r--r--arg_picker/src/parselib/flag_matcher.rs1
-rw-r--r--arg_picker/src/parselib/multi_arg_matcher.rs1
-rw-r--r--arg_picker/src/parselib/pos_matcher.rs1
-rw-r--r--arg_picker/src/parselib/single_matcher.rs1
-rw-r--r--arg_picker/src/parselib/style.rs1
-rw-r--r--arg_picker/src/parselib/utils.rs1
7 files changed, 7 insertions, 0 deletions
diff --git a/arg_picker/src/parselib/arg_matcher.rs b/arg_picker/src/parselib/arg_matcher.rs
index d26f6fb..24785d9 100644
--- a/arg_picker/src/parselib/arg_matcher.rs
+++ b/arg_picker/src/parselib/arg_matcher.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use crate::{
matcher_needed::*,
parselib::{build_possible_flags, seek_end_of_options},
diff --git a/arg_picker/src/parselib/flag_matcher.rs b/arg_picker/src/parselib/flag_matcher.rs
index 2484cc9..339b1d8 100644
--- a/arg_picker/src/parselib/flag_matcher.rs
+++ b/arg_picker/src/parselib/flag_matcher.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use crate::{
matcher_needed::*,
parselib::{build_possible_flags, get_seeked_first, multi_seek_eq, seek_end_of_options},
diff --git a/arg_picker/src/parselib/multi_arg_matcher.rs b/arg_picker/src/parselib/multi_arg_matcher.rs
index 6791121..a251470 100644
--- a/arg_picker/src/parselib/multi_arg_matcher.rs
+++ b/arg_picker/src/parselib/multi_arg_matcher.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use crate::{
matcher_needed::*,
parselib::{build_possible_flags, seek_end_of_options},
diff --git a/arg_picker/src/parselib/pos_matcher.rs b/arg_picker/src/parselib/pos_matcher.rs
index 96aceb3..a37c0df 100644
--- a/arg_picker/src/parselib/pos_matcher.rs
+++ b/arg_picker/src/parselib/pos_matcher.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use crate::{matcher_needed::*, parselib::seek_end_of_options};
/// `PositionalMatcher` matches positional arguments — values not associated
diff --git a/arg_picker/src/parselib/single_matcher.rs b/arg_picker/src/parselib/single_matcher.rs
index d7cf6a4..b29513a 100644
--- a/arg_picker/src/parselib/single_matcher.rs
+++ b/arg_picker/src/parselib/single_matcher.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use crate::TagPhaseContext;
use crate::parselib::{ArgMatcher, Matcher, ParserStyle, PositionalMatcher};
diff --git a/arg_picker/src/parselib/style.rs b/arg_picker/src/parselib/style.rs
index 9f7b38f..9b55158 100644
--- a/arg_picker/src/parselib/style.rs
+++ b/arg_picker/src/parselib/style.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use std::sync::OnceLock;
use std::sync::atomic::{AtomicBool, Ordering};
diff --git a/arg_picker/src/parselib/utils.rs b/arg_picker/src/parselib/utils.rs
index dc4e091..97f64df 100644
--- a/arg_picker/src/parselib/utils.rs
+++ b/arg_picker/src/parselib/utils.rs
@@ -1,3 +1,4 @@
+// Doc Not Optimize
use crate::{
PickerArgInfo,
parselib::{MaskedArg, ParserStyle},