The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
Parameters.cs
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
3 // Project rROTOR
4 // --------------------------------------------------------------------------
5 // File: Parameters.cs
6 // Author: Francisco Ortin - francisco.ortin@gmail.com
7 // Description:
8 // Encapsulates all the parameter data.
9 // --------------------------------------------------------------------------
10 // Create date: 22-06-2007
11 // Modification date: 22-06-2007
13 
14 using TargetPlatforms;
15 namespace CommandLine {
16  struct Parameters {
17  // * Input file names
18  public string[] InputFileNames;
19  // * Output file name
20  public string OutputFileName;
21  // * Target name (default value is CLR)
23  // * If the program must be executed after compilation (default value is false)
24  public bool Run;
25  // * Once il code is generated, this boolean indicates it the generated file will be optimized.
26  public bool ServerOptimization;
27  }
28 }
TargetPlatform TargetPlatform
Definition: Parameters.cs:22