Advertisement
MightyPork

if-else yo

Aug 5th, 2014
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. :::::::::::::::::::::::::::::::::: SDS-C Plus ::::::::::::::::::::::::::::::::::
  2.  
  3. Reading file: example/unit/if_else.c
  4. Resolving #directives...
  5.  
  6. -------------------------------- Cleaned source --------------------------------
  7.  
  8. if (foo) {
  9. bar();
  10. } else {
  11. baz();
  12. }
  13.  
  14.  
  15. --------------------------------- MACROS FOUND ---------------------------------
  16.  
  17. Applying macro replacements...
  18.  
  19. ---------------------------- EXPERIMENTAL TOKEN TREE ---------------------------
  20.  
  21. Experimental tokenization of the code:
  22.  
  23. T_IF
  24. T_Paren (...) : EXPR
  25. T_Expression{ T_Name foo }
  26. T_Name foo
  27. T_CodeBlock {...}
  28. T_CALL
  29. T_Name bar
  30. T_Paren (...) : ARGVALS
  31. -empty-
  32. T_Semicolon
  33. T_ELSE
  34. T_CodeBlock {...}
  35. T_CALL
  36. T_Name baz
  37. T_Paren (...) : ARGVALS
  38. -empty-
  39. T_Semicolon
  40.  
  41. Done.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement