Support the signature type in the parser

This commit is contained in:
Pranav Gaddamadugu 2023-08-02 20:58:20 -04:00
parent 25eac3c63b
commit b1b947fef5

View File

@ -67,6 +67,7 @@ impl ParserContext<'_> {
Token::Field => Type::Field,
Token::Group => Type::Group,
Token::Scalar => Type::Scalar,
Token::Signature => Type::Signature,
Token::String => Type::String,
x => Type::Integer(Self::token_to_int_type(x).expect("invalid int type")),
},