Exemplo n.º 1
0
        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);
        }
Exemplo n.º 2
0
 public CompilationOutput(CompiledProject project, CaretLocation caretLocation)
 {
     this.project = project;
     this.caretLocation = caretLocation;
 }