massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / yaml / nodes.pyi
1 from typing import Any\r
2 \r
3 class Node:\r
4     tag = ...  # type: Any\r
5     value = ...  # type: Any\r
6     start_mark = ...  # type: Any\r
7     end_mark = ...  # type: Any\r
8     def __init__(self, tag, value, start_mark, end_mark) -> None: ...\r
9 \r
10 class ScalarNode(Node):\r
11     id = ...  # type: Any\r
12     tag = ...  # type: Any\r
13     value = ...  # type: Any\r
14     start_mark = ...  # type: Any\r
15     end_mark = ...  # type: Any\r
16     style = ...  # type: Any\r
17     def __init__(self, tag, value, start_mark=..., end_mark=..., style=...) -> None: ...\r
18 \r
19 class CollectionNode(Node):\r
20     tag = ...  # type: Any\r
21     value = ...  # type: Any\r
22     start_mark = ...  # type: Any\r
23     end_mark = ...  # type: Any\r
24     flow_style = ...  # type: Any\r
25     def __init__(self, tag, value, start_mark=..., end_mark=..., flow_style=...) -> None: ...\r
26 \r
27 class SequenceNode(CollectionNode):\r
28     id = ...  # type: Any\r
29 \r
30 class MappingNode(CollectionNode):\r
31     id = ...  # type: Any\r