diff options
| author | mryouse | 2022-05-12 02:24:13 +0000 | 
|---|---|---|
| committer | mryouse | 2022-05-12 02:24:13 +0000 | 
| commit | bf03d7a6a1c70c1da988b9cb4bb44e77ab3934ce (patch) | |
| tree | b8e54442cf44e90b2f66cb6ec76f6b9f7759911e | |
| parent | d5d5e9c48a1583960ddb2db550e947926f9f869e (diff) | |
bugfix: pass through Any
| -rw-r--r-- | tokens.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -28,8 +28,7 @@ class NebBaseType:          return f":{self.type_name}"  class NebAny(NebBaseType): -    def __init__(self, type_name, type_): -        super().__init__("any", NebType.ANY) +    pass  class NebLiteral(NebAny): | 
