Example #1
0
 internal XzaarAssembly() : this(null, null)
 {
     Types              = new TypeCollection();
     GlobalVariables    = new GlobalVariableCollection();
     GlobalInstructions = new GlobalInstructionCollection();
     GlobalMethods      = new MethodCollection();
 }
Example #2
0
 internal XzaarAssembly(string name, string filename)
 {
     this.name          = name;
     this.filename      = filename;
     Types              = new TypeCollection();
     GlobalVariables    = new GlobalVariableCollection();
     GlobalInstructions = new GlobalInstructionCollection();
     GlobalMethods      = new MethodCollection();
 }