Skip to content

Commit

Permalink
chore: marker
Browse files Browse the repository at this point in the history
  • Loading branch information
fzyzcjy committed Feb 7, 2024
1 parent ea726cf commit dce9ee5
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::codegen::parser::function_parser::{
use crate::codegen::parser::type_parser::misc::parse_comments;
use crate::codegen::parser::type_parser::TypeParserParsingContext;
use crate::if_then_some;
use anyhow::{bail, Context};
use anyhow::{bail, ensure, Context};
use syn::*;

impl<'a, 'b> FunctionParser<'a, 'b> {
Expand Down Expand Up @@ -76,6 +76,8 @@ impl<'a, 'b> FunctionParser<'a, 'b> {
..Default::default()
});
}

ensure!(TODO, "TODO");
}

partial_info_for_normal_type_raw(ty, &receiver.attrs, name)
Expand Down

0 comments on commit dce9ee5

Please sign in to comment.