phml.utils.validate

utils.validate

A collection of utilities centered around validating nodes, types, values on nodes, and any other condition you want to apply to a node or ast.

 1"""utils.validate
 2
 3A collection of utilities centered around validating nodes, types,
 4values on nodes, and any other condition you want to apply to a node
 5or ast.
 6"""
 7
 8from .check import Test, check
 9from .validate import *
10
11# __all__ = [
12#     "validate",
13#     "parent",
14#     "literal",
15#     "generated",
16#     "has_property",
17#     "is_heading",
18#     "is_css_link",
19#     "is_css_style",
20#     "is_javascript",
21#     "is_element",
22#     "is_event_handler",
23#     "test",
24#     "Test"
25# ]