Guest User

Untitled

a guest
Jun 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. lines returns [Type type]
  2. : {
  3. int count = 0;
  4. } (t=line ) {
  5. type = t;
  6. count++;
  7. currentScope.Emit(OpCodes.Pop);
  8. } (line)* {
  9. if (count == 0) type = null;
  10. }
  11. |
  12. ;
Add Comment
Please, Sign In to add comment