blob: 8fc982a098eda9441daec83f652457bd36f85086 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use crate::ast::*;
use crate::checker_state::*;
use tracing::instrument;
impl CheckerState {
#[instrument(skip(self), level = "debug", fields(%signature))]
pub fn check_signature(&self, signature: Signature) -> Result<Signature, CheckerError> {
Err(CheckerError::Unimplemented(
"signature checking".to_string(),
))
}
}
|