Subversion Repositories Kolibri OS

Rev

Rev 9408 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9408 Rev 10051
Line 942... Line 942...
942
                    # get the coment from the reader
942
                    # get the coment from the reader
943
                    while r.curr() != '':
943
                    while r.curr() != '':
944
                        r.step()
944
                        r.step()
945
                    comment = r.comment
945
                    comment = r.comment
946
                    # Only handle non-local labels
946
                    # Only handle non-local labels
947
                    if name[0] != '.' and name != "@@" and name != "$Revision":
947
                    if name[0] != '.' and name != "@@":
948
                        # Treate the label as function if there's @return or
948
                        # Treat the label as function if there's @return or
949
                        # @param in its comment. Othervice it's just a variable
949
                        # @param in its comment. Otherwise it's just a variable
950
                        # with type `label` in generated doxygen C
950
                        # with type `label` in generated doxygen C
951
                        if '@return' in comment or '@param' in comment:
951
                        if '@return' in comment or '@param' in comment:
952
                            element = AsmFunction(r.location(), name, comment,
952
                            element = AsmFunction(r.location(), name, comment,
953
                                                  '', [], [])
953
                                                  '', [], [])
954
                        else:
954
                        else: