japl-python/JAPL/meta/tokenobject.py

14 lines
231 B
Python
Raw Normal View History

2020-10-21 18:07:15 +02:00
from dataclasses import dataclass
from .tokentype import TokenType
@dataclass
class Token(object):
"""The representation of a JAPL token"""
kind: TokenType
lexeme: str
literal: object
line: int