forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (41 loc) · 1.16 KB
/
__init__.py
File metadata and controls
43 lines (41 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright (c) Meta Platforms, Inc. and affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
from .argument_parsing import (
Argument,
extract_qualifiers,
format_arguments,
format_parsed_type,
FunctionModifiers,
parse_arg_string,
parse_function_pointer_argstring,
parse_type_with_argstrings,
)
from .qualified_path import parse_qualified_path
from .text_resolution import (
extract_namespace_from_refid,
InitializerType,
normalize_angle_brackets,
normalize_pointer_spacing,
resolve_linked_text_name,
)
from .type_qualification import qualify_arguments, qualify_parsed_type, qualify_type_str
__all__ = [
"Argument",
"extract_namespace_from_refid",
"extract_qualifiers",
"format_arguments",
"format_parsed_type",
"FunctionModifiers",
"InitializerType",
"normalize_angle_brackets",
"parse_arg_string",
"parse_function_pointer_argstring",
"parse_qualified_path",
"parse_type_with_argstrings",
"qualify_arguments",
"qualify_parsed_type",
"qualify_type_str",
"resolve_linked_text_name",
]