mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
style: Use Option<&mut> instead of &mut Option in custom_properties.rs
This commit is contained in:
parent
3b7a82b8c7
commit
08fd5ba8c1
1 changed files with 18 additions and 11 deletions
|
@ -244,13 +244,13 @@ impl SpecifiedValue {
|
||||||
_context: &ParserContext,
|
_context: &ParserContext,
|
||||||
input: &mut Parser<'i, 't>,
|
input: &mut Parser<'i, 't>,
|
||||||
) -> Result<Box<Self>, ParseError<'i>> {
|
) -> Result<Box<Self>, ParseError<'i>> {
|
||||||
let mut references = Some(PrecomputedHashSet::default());
|
let mut references = PrecomputedHashSet::default();
|
||||||
let (first, css, last) = parse_self_contained_declaration_value(input, &mut references)?;
|
let (first, css, last) = parse_self_contained_declaration_value(input, Some(&mut references))?;
|
||||||
Ok(Box::new(SpecifiedValue {
|
Ok(Box::new(SpecifiedValue {
|
||||||
css: css.into_owned(),
|
css: css.into_owned(),
|
||||||
first_token_type: first,
|
first_token_type: first,
|
||||||
last_token_type: last,
|
last_token_type: last,
|
||||||
references: references.unwrap(),
|
references
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -259,13 +259,13 @@ impl SpecifiedValue {
|
||||||
pub fn parse_non_custom_with_var<'i, 't>
|
pub fn parse_non_custom_with_var<'i, 't>
|
||||||
(input: &mut Parser<'i, 't>)
|
(input: &mut Parser<'i, 't>)
|
||||||
-> Result<(TokenSerializationType, Cow<'i, str>), ParseError<'i>> {
|
-> Result<(TokenSerializationType, Cow<'i, str>), ParseError<'i>> {
|
||||||
let (first_token_type, css, _) = parse_self_contained_declaration_value(input, &mut None)?;
|
let (first_token_type, css, _) = parse_self_contained_declaration_value(input, None)?;
|
||||||
Ok((first_token_type, css))
|
Ok((first_token_type, css))
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_self_contained_declaration_value<'i, 't>(
|
fn parse_self_contained_declaration_value<'i, 't>(
|
||||||
input: &mut Parser<'i, 't>,
|
input: &mut Parser<'i, 't>,
|
||||||
references: &mut Option<PrecomputedHashSet<Name>>
|
references: Option<&mut PrecomputedHashSet<Name>>
|
||||||
) -> Result<
|
) -> Result<
|
||||||
(TokenSerializationType, Cow<'i, str>, TokenSerializationType),
|
(TokenSerializationType, Cow<'i, str>, TokenSerializationType),
|
||||||
ParseError<'i>
|
ParseError<'i>
|
||||||
|
@ -288,7 +288,7 @@ fn parse_self_contained_declaration_value<'i, 't>(
|
||||||
/// https://drafts.csswg.org/css-syntax-3/#typedef-declaration-value
|
/// https://drafts.csswg.org/css-syntax-3/#typedef-declaration-value
|
||||||
fn parse_declaration_value<'i, 't>(
|
fn parse_declaration_value<'i, 't>(
|
||||||
input: &mut Parser<'i, 't>,
|
input: &mut Parser<'i, 't>,
|
||||||
references: &mut Option<PrecomputedHashSet<Name>>,
|
references: Option<&mut PrecomputedHashSet<Name>>,
|
||||||
missing_closing_characters: &mut String
|
missing_closing_characters: &mut String
|
||||||
) -> Result<(TokenSerializationType, TokenSerializationType), ParseError<'i>> {
|
) -> Result<(TokenSerializationType, TokenSerializationType), ParseError<'i>> {
|
||||||
input.parse_until_before(Delimiter::Bang | Delimiter::Semicolon, |input| {
|
input.parse_until_before(Delimiter::Bang | Delimiter::Semicolon, |input| {
|
||||||
|
@ -305,7 +305,7 @@ fn parse_declaration_value<'i, 't>(
|
||||||
/// invalid at the top level
|
/// invalid at the top level
|
||||||
fn parse_declaration_value_block<'i, 't>(
|
fn parse_declaration_value_block<'i, 't>(
|
||||||
input: &mut Parser<'i, 't>,
|
input: &mut Parser<'i, 't>,
|
||||||
references: &mut Option<PrecomputedHashSet<Name>>,
|
mut references: Option<&mut PrecomputedHashSet<Name>>,
|
||||||
missing_closing_characters: &mut String
|
missing_closing_characters: &mut String
|
||||||
) -> Result<(TokenSerializationType, TokenSerializationType), ParseError<'i>> {
|
) -> Result<(TokenSerializationType, TokenSerializationType), ParseError<'i>> {
|
||||||
let mut token_start = input.position();
|
let mut token_start = input.position();
|
||||||
|
@ -319,7 +319,11 @@ fn parse_declaration_value_block<'i, 't>(
|
||||||
macro_rules! nested {
|
macro_rules! nested {
|
||||||
() => {
|
() => {
|
||||||
input.parse_nested_block(|input| {
|
input.parse_nested_block(|input| {
|
||||||
parse_declaration_value_block(input, references, missing_closing_characters)
|
parse_declaration_value_block(
|
||||||
|
input,
|
||||||
|
references.as_mut().map(|r| &mut **r),
|
||||||
|
missing_closing_characters
|
||||||
|
)
|
||||||
})?
|
})?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -353,7 +357,10 @@ fn parse_declaration_value_block<'i, 't>(
|
||||||
if name.eq_ignore_ascii_case("var") {
|
if name.eq_ignore_ascii_case("var") {
|
||||||
let args_start = input.state();
|
let args_start = input.state();
|
||||||
input.parse_nested_block(|input| {
|
input.parse_nested_block(|input| {
|
||||||
parse_var_function(input, references)
|
parse_var_function(
|
||||||
|
input,
|
||||||
|
references.as_mut().map(|r| &mut **r),
|
||||||
|
)
|
||||||
})?;
|
})?;
|
||||||
input.reset(&args_start);
|
input.reset(&args_start);
|
||||||
}
|
}
|
||||||
|
@ -420,7 +427,7 @@ fn parse_declaration_value_block<'i, 't>(
|
||||||
// If the var function is valid, return Ok((custom_property_name, fallback))
|
// If the var function is valid, return Ok((custom_property_name, fallback))
|
||||||
fn parse_var_function<'i, 't>(
|
fn parse_var_function<'i, 't>(
|
||||||
input: &mut Parser<'i, 't>,
|
input: &mut Parser<'i, 't>,
|
||||||
references: &mut Option<PrecomputedHashSet<Name>>
|
references: Option<&mut PrecomputedHashSet<Name>>
|
||||||
) -> Result<(), ParseError<'i>> {
|
) -> Result<(), ParseError<'i>> {
|
||||||
let name = input.expect_ident_cloned()?;
|
let name = input.expect_ident_cloned()?;
|
||||||
let name: Result<_, ParseError> =
|
let name: Result<_, ParseError> =
|
||||||
|
@ -438,7 +445,7 @@ fn parse_var_function<'i, 't>(
|
||||||
Ok(())
|
Ok(())
|
||||||
})?;
|
})?;
|
||||||
}
|
}
|
||||||
if let Some(ref mut refs) = *references {
|
if let Some(refs) = references {
|
||||||
refs.insert(Atom::from(name));
|
refs.insert(Atom::from(name));
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue