Advertisement
Vermiculus

Whee!

Apr 2nd, 2012
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. 1) Syntax checks
  2. 2) Semantic evaluation
  3.  
  4. 1) Scanner
  5. Parse the file, checking for syntax / ordering / format errors and storing the useful chunks.
  6. -Python -> list
  7. -Java -> ArrayList<Object>
  8. 2) Semantics
  9. Translate ingredients into variables (dictionary[name]:=(wet|dry, value)
  10. Translate methods into appropriate code structures (herpderp)
  11. Two things are particularly interesting/complex:
  12. Loops (for which we have a plan of attack)
  13. Auxiliary Recipes (which shouldn't be hard)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement