nac3artiq: throw error message when constructor use rpc decorator #306

Merged
sb10q merged 10 commits from issue-221 into master 2022-07-11 15:55:55 +08:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 5e32724c91 - Show all commits

View File

@ -1067,7 +1067,7 @@ impl TopLevelComposer {
let mut defined_fields: HashSet<_> = HashSet::new();
for b in class_body_ast {
match &b.node {
ast::StmtKind::FunctionDef { args, returns, name, decorator_list, .. } => {
ast::StmtKind::FunctionDef { args, returns, name, .. }=> {
let (method_dummy_ty, method_id) =
Self::get_class_method_def_info(class_methods_def, *name)?;