mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
style: Reformat a couple signatures.
MozReview-Commit-ID: 7Wdvj7i8ClR
This commit is contained in:
parent
a89a76e1fc
commit
09d3a11c86
2 changed files with 31 additions and 21 deletions
|
@ -869,9 +869,12 @@ impl ShorthandId {
|
|||
}
|
||||
}
|
||||
|
||||
fn parse_into<'i, 't>(&self, declarations: &mut SourcePropertyDeclaration,
|
||||
context: &ParserContext, input: &mut Parser<'i, 't>)
|
||||
-> Result<(), ParseError<'i>> {
|
||||
fn parse_into<'i, 't>(
|
||||
&self,
|
||||
declarations: &mut SourcePropertyDeclaration,
|
||||
context: &ParserContext,
|
||||
input: &mut Parser<'i, 't>,
|
||||
) -> Result<(), ParseError<'i>> {
|
||||
match *self {
|
||||
% for shorthand in data.shorthands_except_all():
|
||||
ShorthandId::${shorthand.camel_case} => {
|
||||
|
@ -1628,10 +1631,13 @@ impl PropertyDeclaration {
|
|||
/// This will not actually parse Importance values, and will always set things
|
||||
/// to Importance::Normal. Parsing Importance values is the job of PropertyDeclarationParser,
|
||||
/// we only set them here so that we don't have to reallocate
|
||||
pub fn parse_into<'i, 't>(declarations: &mut SourcePropertyDeclaration,
|
||||
id: PropertyId, name: CowRcStr<'i>,
|
||||
context: &ParserContext, input: &mut Parser<'i, 't>)
|
||||
-> Result<(), ParseError<'i>> {
|
||||
pub fn parse_into<'i, 't>(
|
||||
declarations: &mut SourcePropertyDeclaration,
|
||||
id: PropertyId,
|
||||
name: CowRcStr<'i>,
|
||||
context: &ParserContext,
|
||||
input: &mut Parser<'i, 't>,
|
||||
) -> Result<(), ParseError<'i>> {
|
||||
assert!(declarations.is_empty());
|
||||
let start = input.state();
|
||||
match id {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue