IRGenInterface.java 490 B

12345678910111213141516171819202122
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package IntermediaryCode;
  7. // sync recebe mandando
  8. // exec recebe mandando
  9. import ast.AbstractSyntaxTree;
  10. import common.Code;
  11. // synexec recebe mandando
  12. /**
  13. *
  14. * @author Eugenio
  15. */
  16. public interface IRGenInterface {
  17. public Code Create(AbstractSyntaxTree ast) throws Exception;
  18. }