Total Complexity | 0 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | """Contains the class representing a sentence leaf.""" |
||
5 | 1 | @register |
|
6 | 1 | class Sentence(AbstractNode): |
|
7 | """Represents a sentence before it is parsed. |
||
8 | https://github.com/ProjetPP/Documentation/blob/master/data-model.md#sentence |
||
9 | """ |
||
10 | 1 | __slots__ = () |
|
11 | 1 | _type = 'sentence' |
|
12 | 1 | _possible_attributes = ('value',) |
|
13 | |||
15 |