Lines Matching defs:annotation
49 "'%s' can not be used within an annotation"
222 static int symtable_visit_annotation(struct symtable *st, expr_ty annotation);
1286 if (!symtable_visit_annotation(st, s->v.AnnAssign.annotation)) {
1816 symtable_visit_annotation(struct symtable *st, expr_ty annotation)
1821 (void *)annotation, annotation->lineno,
1822 annotation->col_offset, annotation->end_lineno,
1823 annotation->end_col_offset)) {
1826 VISIT(st, expr, annotation);
1843 if (arg->annotation)
1844 VISIT(st, expr, arg->annotation);
1864 if (a->vararg && a->vararg->annotation)
1865 VISIT(st, expr, a->vararg->annotation);
1866 if (a->kwarg && a->kwarg->annotation)
1867 VISIT(st, expr, a->kwarg->annotation);