Guest User

Untitled

a guest
Mar 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class Unary extends Expression {
  2. constructor(operator, right) {
  3. super()
  4. this.operator = operator
  5. this.right = right
  6. }
  7.  
  8. handle(visitor) {
  9. return visitor.visitUnaryExpression(this)
  10. }
  11. }
Add Comment
Please, Sign In to add comment