예제 #1
0
파일: proto.py 프로젝트: prestocore/browser
 def fromComment(cmt):
     DocBlock(parse_docblock(cmt))
예제 #2
0
 def _iter_docs(self):
     for doc in self._docs:
         if re.match("///", doc):
             yield parse_docblock(doc)
         elif doc.startswith("/**") and doc.endswith("*/"):
             yield parse_docblock(doc)
예제 #3
0
 def _iter_docs(self):
     for doc in self._docs:
         if re.match("///", doc):
             yield parse_docblock(doc)
         elif doc.startswith("/**") and doc.endswith("*/"):
             yield parse_docblock(doc)