You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
///<para>Parse a source code file, returning a handle that can be used for obtaining navigation bar information
118
-
/// To get the full information, call 'CheckFileInProject' method on the result</para>
119
-
///<para>All files except the one being checked are read from the FileSystem API</para>
116
+
/// Parses a source code for a file. Returns an AST that can be traversed for various features.
120
117
///</summary>
121
118
///
122
-
///<param name="filename">The filename for the file.</param>
123
-
/// <paramname="source">The full source for the file.</param>
124
-
/// <paramname="options">The options for the project or script, used to determine active --define conditionals and other options relevant to parsing.</param>
119
+
///<param name="filename">The path for the file. The file name is also as a modulename for implicit top level modules (e.g.in scripts).</param>
120
+
/// <paramname="sourceText">The source to be parsed.</param>
121
+
/// <paramname="options">Parsing options for the project or script.</param>
122
+
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
/// Parses a source code for a file. Returns an AST that can be traversed for various features.
127
+
///</summary>
128
+
///
129
+
///<param name="filename">The path for the file. The file name is also as a modulename for implicit top level modules (e.g.in scripts).</param>
130
+
/// <paramname="sourceText">The source to be parsed.</param>
131
+
/// <paramname="options">Parsing options for the project or script.</param>
125
132
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
126
133
[<Obsolete("Please call checker.ParseFile instead. To do this, you must also pass FSharpParsingOptions instead of FSharpProjectOptions. If necessary generate FSharpParsingOptions from FSharpProjectOptions by calling checker.GetParsingOptionsFromProjectOptions(options)")>]
0 commit comments