Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/19/13 00:52:19 (11 years ago)
Author:
gkronber
Message:

#2026 re-enabled code generation from within HL and added missing file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/GpdlEditor.cs

    r9724 r9725  
    2020
    2121    private void compileButton_Click(object sender, EventArgs e) {
    22       //Utils.InstallModule("Utils", Utils.UtilsMethod);
    23       //Utils.InstallModule("Sets", Sets.SetsMethod);
    24       //Utils.InstallModule("Errors", Errors.ErrorsMethod);
    25 
    26       //Utils.InstallModule("GPDefLex", GPDefLex.GPDefLexMethod);
    27       //Utils.InstallModule("GPDefSem", GPDefSem.GPDefSemMethod);
    28       //Utils.InstallModule("GPDefSyn", GPDefSyn.GPDefSynMethod);
    29 
    30       //// --- initialize modules ---
    31       //Utils.Modules(Utils.ModuleAction.initModule);
    32 
    33       //Errors.PushAbortMethod(new Errors.AbortMethod(Abort));
    3422
    3523      using (var src = new MemoryStream(Encoding.UTF8.GetBytes(codeEditor.textEditor.Text))) {
     
    3725        Parser parser = new Parser(scanner);
    3826        parser.Parse();
     27        MainForm.MainFormManager.MainForm.ShowContent(Parser.problem);
    3928      }
    4029
     
    4534      //  GPDefSyn.Interpret();
    4635
    47       //  MainForm.MainFormManager.MainForm.ShowContent(GPDefSem.problem);
    4836      //} else {
    4937      //  int nLexErrors = Errors.NumOfLexErrors();
     
    6048    }
    6149
    62     private void Abort(string abortKind, string moduleName, string methodName, string descr) {
    63 
    64     }
    6550
    6651    void IProblemInstanceConsumer<string>.Load(string data) {
Note: See TracChangeset for help on using the changeset viewer.