INNER CODE UNIT · Python
LeftParenthesisToken
P1sec/hermes-dec · src/hermes_dec/decompilation/defs.py:392
class LeftParenthesisToken(Token):
def __str__(self):
return '('
@dataclass
class RightParenthesisToken(Token):
def __str__(self):
return ')'
@dataclass
class CatchBlockStart(Token):
arg_register: int
@dataclass
class DotAccessorToken(Token):