From d5d5e9c48a1583960ddb2db550e947926f9f869e Mon Sep 17 00:00:00 2001 From: mryouse Date: Thu, 12 May 2022 02:12:48 +0000 Subject: type compare and Any type --- tokens.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tokens.py') diff --git a/tokens.py b/tokens.py index a8f6268..66fb98d 100644 --- a/tokens.py +++ b/tokens.py @@ -31,7 +31,7 @@ class NebAny(NebBaseType): def __init__(self, type_name, type_): super().__init__("any", NebType.ANY) -class NebLiteral(NebBaseType): +class NebLiteral(NebAny): def __init__(self, type_name, type_, value): super().__init__(type_name, type_) -- cgit v1.2.3