mirror of
https://github.com/twiglet/cs2j.git
synced 2025-01-18 13:15:17 +01:00
27 lines
580 B
C#
27 lines
580 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Text;
|
|
|
|
|
|
// This is just a holder for parts of a type signature that we need to pass
|
|
// from production to production
|
|
namespace RusticiSoftware.Translator
|
|
{
|
|
public class SigEnv
|
|
{
|
|
|
|
public SigEnv()
|
|
{ }
|
|
|
|
public ArrayList Properties = new ArrayList();
|
|
|
|
public ArrayList Methods = new ArrayList();
|
|
|
|
public ArrayList Constructors = new ArrayList();
|
|
|
|
public ArrayList Fields = new ArrayList();
|
|
|
|
public ArrayList Casts = new ArrayList();
|
|
}
|
|
}
|