public void SetMethodSourceRange(
            ISymbolDocumentWriter startDoc,
            int startLine,
            int startColumn,
            ISymbolDocumentWriter endDoc,
            int endLine,
            int endColumn)
        {
            int nsId            = GetCurrentNamespace(startDoc);
            SourceMethodImpl sm = new SourceMethodImpl(methodName, currentToken, nsId);

            msw.OpenMethod(((ICompileUnit)startDoc).Entry, nsId, sm);
            methodOpened = true;
        }
Example #2
0
        public void SetMethodSourceRange(
            ISymbolDocumentWriter startDoc,
            int startLine,
            int startColumn,
            ISymbolDocumentWriter endDoc,
            int endLine,
            int endColumn)
        {
#if FIXME
            SourceMethodImpl sm = new SourceMethodImpl(methodName, currentToken, GetCurrentNamespace(startDoc));
            msw.OpenMethod(startDoc as ISourceFile, sm, startLine, startColumn, endLine, endColumn);
            methodOpened = true;
#endif
        }
Example #3
0
		public void SetMethodSourceRange (
			ISymbolDocumentWriter startDoc,
			int startLine,
			int startColumn,
			ISymbolDocumentWriter endDoc,
			int endLine,
			int endColumn)
		{
			int nsId = GetCurrentNamespace (startDoc);
			SourceMethodImpl sm = new SourceMethodImpl (methodName, currentToken, nsId);
			msw.OpenMethod (((ICompileUnit)startDoc).Entry, nsId, sm);
			methodOpened = true;
		}
        public void OpenMethod(uint method)
        {
            var sm = new SourceMethodImpl(writer.GetMethodDefinition(method).Name, (int)method);

            msw.OpenMethod(null, 0, sm);
        }
		public void OpenMethod (uint method)
		{
			var sm = new SourceMethodImpl (writer.GetMethodDefinition (method).Name, (int)method);
			msw.OpenMethod (null, 0, sm);
		}
		public void SetMethodSourceRange (
			ISymbolDocumentWriter startDoc,
			int startLine,
			int startColumn,
			ISymbolDocumentWriter endDoc,
			int endLine,
			int endColumn)
		{
#if FIXME
			SourceMethodImpl sm = new SourceMethodImpl (methodName, currentToken, GetCurrentNamespace (startDoc));
			msw.OpenMethod (startDoc as ISourceFile, sm, startLine, startColumn, endLine, endColumn);
			methodOpened = true;
#endif
		}