Guest User

Untitled

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