Advertisement
Guest User

Untitled

a guest
Jun 1st, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
BNF 0.67 KB | None | 0 0
  1. Setting up VM State...
  2. *** (ParseIdent)
  3. Got Identifier: Object
  4. --- lex.next(Before) =
  5. --- lex.next(After) = Object
  6. --- lex.input(Before) = Object clone do(1, 2)
  7. --- lex.input(After) =  clone do(1, 2)
  8. *** (ParseIdent)
  9. Got Identifier: clone
  10. --- lex.next(Before) = Object
  11. --- lex.next(After) = clone
  12. --- lex.input(Before) = clone do(1, 2)
  13. --- lex.input(After) =  do(1, 2)
  14. *** (ParseExpression) / fallback -- lex.current = Object; lex.next = clone
  15. *** (ParseIdent)
  16. Got Identifier: do(1,
  17. *** (ParseExpression) / fallback -- lex.current = clone; lex.next = clone
  18. *** (ParseIdent)
  19. Got Identifier: do(1,
  20. *** (ParseExpression) / fallback -- lex.current = clone; lex.next = clone
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement