swp-uebersetzerbau-ss13 / common

Shared files between teams.
1 stars 0 forks source link

Semantic Analyser #26

Closed EdwarDDay closed 11 years ago

EdwarDDay commented 11 years ago

Here is a proposal for an interface for the semantic analyser:

interface SemanticAnalyser{

    void setReportLog(ReportLog log);

    AST analyse(AST ast);
}