Inheritance: Boo.Lang.Compiler.Steps.AbstractFastVisitorCompilerStep
コード例 #1
0
ファイル: EmitAssembly.cs プロジェクト: Bombadil77/boo
 public TypeCreator(EmitAssembly emitter, List<TypeDefinition> types)
 {
     _emitter = emitter;
     _types = types;
     _created = new Set<TypeDefinition>();
 }
コード例 #2
0
ファイル: EmitAssembly.cs プロジェクト: hlizard/boo
			public AttributeEmitVisitor(EmitAssembly emitter, TypeCreator knownTypes)
			{
				this._emitter = emitter;
				this._knownTypes = knownTypes;
			}
コード例 #3
0
ファイル: EmitAssembly.cs プロジェクト: Bombadil77/boo
 public AttributeEmitVisitor(EmitAssembly emitter)
 {
     _emitter = emitter;
 }
コード例 #4
0
ファイル: EmitAssembly.cs プロジェクト: w4x/boolangstudio
 public TypeCreator(EmitAssembly emitter, List types)
 {
     _emitter = emitter;
     _types = types;
     _created = new Hashtable();
 }