diesel_derives/deprecated/
primary_key.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use syn::parse::{Parse, ParseStream, Result};
use syn::punctuated::Punctuated;
use syn::token::Comma;
use syn::{parenthesized, Ident};

pub fn parse_primary_key(name: Ident, input: ParseStream) -> Result<Punctuated<Ident, Comma>> {
    if input.is_empty() {
        return Err(syn::Error::new(
            name.span(),
            "unexpected end of input, expected parentheses",
        ));
    }

    let content;
    parenthesized!(content in input);

    content.parse_terminated(Ident::parse, syn::Token![,])
}