From 6e72b23aab19705af575e134ec84357170bbe05b Mon Sep 17 00:00:00 2001 From: Siegfried Pammer Date: Sun, 9 May 2010 15:29:14 +0000 Subject: [PATCH] added missing file git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/vbnet@5800 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../Src/VBNet/VBNetExpressionFinder.cs | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs diff --git a/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs new file mode 100644 index 0000000000..76a46ef514 --- /dev/null +++ b/src/Main/ICSharpCode.SharpDevelop.Dom/Project/Src/VBNet/VBNetExpressionFinder.cs @@ -0,0 +1,45 @@ +// +// +// +// +// $Revision$ +// + +using System; + +namespace ICSharpCode.SharpDevelop.Dom.VBNet +{ + /// + /// Description of VBNetExpressionFinder. + /// + 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(); + } + } +}