Boo.BooLangService.Intellisense.DeclarationFinder.Find C# (CSharp) Method

Find() public method

public Find ( CaretLocation caretLocation, ParseReason parseReason ) : IntellisenseDeclarations
caretLocation Boo.BooLangStudioSpecs.Document.CaretLocation
parseReason ParseReason
return IntellisenseDeclarations
        public IntellisenseDeclarations Find(CaretLocation caretLocation, ParseReason parseReason)
        {
            if (!caretLocation.IsValid)
                throw new ArgumentException("Caret location has not been provided, cannot continue.");

            return Find(caretLocation.Line.Value, caretLocation.Column.Value, parseReason);
        }

Same methods

DeclarationFinder::Find ( int lineNum, int colNum, ParseReason reason ) : IntellisenseDeclarations