rename parse_cfg_prefix() to has_cfg_prefix()
The function parse_cfg_prefix() is not really parsing. It's just checking whether the prefix is present or not. So the new function name as suggested by @Mark-Simulacrum is better.
This commit is contained in:
parent
1e436eb236
commit
567b07c9e6
1 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ impl EarlyProps {
|
|||
props.ignore =
|
||||
props.ignore ||
|
||||
config.parse_cfg_name_directive(ln, "ignore") ||
|
||||
(config.parse_cfg_prefix(ln, "only") &&
|
||||
(config.has_cfg_prefix(ln, "only") &&
|
||||
!config.parse_cfg_name_directive(ln, "only")) ||
|
||||
ignore_gdb(config, ln) ||
|
||||
ignore_lldb(config, ln) ||
|
||||
|
@ -566,7 +566,7 @@ impl Config {
|
|||
}
|
||||
}
|
||||
|
||||
fn parse_cfg_prefix(&self, line: &str, prefix: &str) -> bool {
|
||||
fn has_cfg_prefix(&self, line: &str, prefix: &str) -> bool {
|
||||
// returns whether this line contains this prefix or not. For prefix
|
||||
// "ignore", returns true if line says "ignore-x86_64", "ignore-arch",
|
||||
// "ignore-andorid" etc.
|
||||
|
|
Loading…
Add table
Reference in a new issue