The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
TargetPlatform.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: TargetPlatformRepresentation.cs //
6 // Authors: Francisco Ortin - francisco.ortin@gmail.com //
7 // Description: //
8 // Each target platform of our retargetable compiler must have an entry //
9 // on this enum type //
10 // Remember to add that entry in the two static arrays in //
11 // the TargetPlaformRepresentation class //
12 // Used for command line optiones and for the visual IDE
13 // -------------------------------------------------------------------------- //
14 // Create date: 25-01-2007 //
15 // Modification date: 26-03-2007 //
17 
18 using System;
19 using System.Collections.Generic;
20 using System.Text;
21 
22 namespace TargetPlatforms {
23 
24  public enum TargetPlatform {
25  CLR,
26  RRotor,
27  }
28 
29 }