this repo has no description

Remove unneeded `Juxt` token (#208)

I started reading through the parsing code and noticed that this token
was being unused. Let me know if you'd like me to make any further
changes!

---------

Co-authored-by: Abel Sen <abelsen@Abels-MacBook-Air.local>

authored by

Abel Sen
Abel Sen
and committed by
GitHub
07257525 89e38bf9

-7
-7
scrapscript.py
··· 107 107 108 108 109 109 @dataclass(eq=True) 110 - class Juxt(Token): 111 - # The space between other tokens that indicates function application. 112 - pass 113 - 114 - 115 - @dataclass(eq=True) 116 110 class VariantToken(Token): 117 111 value: str 118 112 ··· 517 511 # TODO: revisit whether to use @ or . for field access 518 512 l = Access(l, parse(tokens, pr)) 519 513 else: 520 - assert not isinstance(op, Juxt) 521 514 assert isinstance(op, Operator) 522 515 l = Binop(BinopKind.from_str(op.value), l, parse(tokens, pr)) 523 516 return l