~romain-bouqueau-pro/abstract/master

« back to all changes in this revision

Viewing changes to apps/analyzer/exe_test_analyzer.d

  • Committer: rbouqueau
  • Date: 2014-12-16 19:53:14 UTC
  • Revision ID: romain.bouqueau.pro@gmail.com-20141216195314-nw9mv4hf2imp0dgx
allow multiple backends (still using mixins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
import model;
27
27
import analyzer;
28
28
import parser_generator;
 
29
import backend_d;
29
30
 
30
31
int main(string[] args)
31
32
{
32
 
  writeln(getParserCode(getModel()));
 
33
  Backend_D backend;
 
34
  writeln(getParserCode(getModel(), backend));
33
35
 
34
36
  runAnalyzer(getModel(), args);
35
37
  return 0;