ICSharpCode.NRefactory.MonoCSharp.Constructor.WriteDebugSymbol C# (CSharp) Method

WriteDebugSymbol() public method

public WriteDebugSymbol ( MonoSymbolFile file ) : void
file MonoSymbolFile
return void
		public override void WriteDebugSymbol (MonoSymbolFile file)
		{
			if (debug_builder == null)
				return;

			var token = ConstructorBuilder.GetToken ();
			int t = token.Token;
#if STATIC
			if (ModuleBuilder.IsPseudoToken (t))
				t = Module.Builder.ResolvePseudoToken (t);
#endif

			debug_builder.DefineMethod (file, t);
		}