Conditions | 1 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
1 | from coalib.misc.Decorators import generate_eq, generate_repr |
||
12 | def __init__(self, documentation, docstyle, marker, range): |
||
13 | """ |
||
14 | Instantiates a new DocumentationComment. |
||
15 | |||
16 | :param documentation: The documentation text. |
||
17 | :param docstyle: The DocstyleDefinition. |
||
18 | :param marker: The specific set of marker strings that |
||
19 | identified this documentation comment. |
||
20 | :param range: The position range of type TextRange. |
||
21 | """ |
||
22 | self.documentation = documentation |
||
23 | self.docstyle = docstyle |
||
24 | self.marker = marker |
||
25 | self.range = range |
||
26 | |||
29 |