Browse Source

added missing file

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/vbnet@5800 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
pull/1/head
Siegfried Pammer 16 years ago
parent
commit
6e72b23aab
  1. 45
      src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs

45
src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs

@ -0,0 +1,45 @@ @@ -0,0 +1,45 @@
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Siegfried Pammer" email="siegfriedpammer@gmail.com" />
// <version>$Revision$</version>
// </file>
using System;
namespace ICSharpCode.SharpDevelop.Dom.VBNet
{
/// <summary>
/// Description of VBNetExpressionFinder.
/// </summary>
public class VBNetExpressionFinder : IExpressionFinder
{
ParseInformation parseInformation;
IProjectContent projectContent;
public VBNetExpressionFinder(ParseInformation parseInformation)
{
this.parseInformation = parseInformation;
if (parseInformation != null && parseInformation.CompilationUnit != null) {
projectContent = parseInformation.CompilationUnit.ProjectContent;
} else {
projectContent = DefaultProjectContent.DummyProjectContent;
}
}
public ExpressionResult FindExpression(string text, int offset)
{
throw new NotImplementedException();
}
public ExpressionResult FindFullExpression(string text, int offset)
{
throw new NotImplementedException();
}
public string RemoveLastPart(string expression)
{
throw new NotImplementedException();
}
}
}
Loading…
Cancel
Save