Inheritance: Boo.Lang.Compiler.Steps.AbstractFastVisitorCompilerStep
Exemple #1
0
 public TypeCreator(EmitAssembly emitter, List<TypeDefinition> types)
 {
     _emitter = emitter;
     _types = types;
     _created = new Set<TypeDefinition>();
 }
Exemple #2
0
			public AttributeEmitVisitor(EmitAssembly emitter, TypeCreator knownTypes)
			{
				this._emitter = emitter;
				this._knownTypes = knownTypes;
			}
Exemple #3
0
 public AttributeEmitVisitor(EmitAssembly emitter)
 {
     _emitter = emitter;
 }
Exemple #4
0
 public TypeCreator(EmitAssembly emitter, List types)
 {
     _emitter = emitter;
     _types = types;
     _created = new Hashtable();
 }