fix(jambo): Add NullTypeParser implementation and tests (#2)

This commit is contained in:
Thomas
2025-07-04 11:24:56 +02:00
committed by GitHub
parent cbcb56c3c4
commit 7c1278af16
3 changed files with 70 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ from .const_type_parser import ConstTypeParser
from .enum_type_parser import EnumTypeParser
from .float_type_parser import FloatTypeParser
from .int_type_parser import IntTypeParser
from .null_type_parser import NullTypeParser
from .object_type_parser import ObjectTypeParser
from .ref_type_parser import RefTypeParser
from .string_type_parser import StringTypeParser
@@ -22,6 +23,7 @@ __all__ = [
"BooleanTypeParser",
"FloatTypeParser",
"IntTypeParser",
"NullTypeParser",
"ObjectTypeParser",
"StringTypeParser",
"RefTypeParser",