2 writes to FilePath
Microsoft.CodeAnalysis.Scripting (2)
ScriptOptions.cs (2)
166FilePath = filePath; 206=> (FilePath == filePath) ? this : new ScriptOptions(this) { FilePath = filePath ?? "" };
4 references to FilePath
Microsoft.CodeAnalysis.CSharp.Scripting (1)
CSharpScriptCompiler.cs (1)
47var tree = SyntaxFactory.ParseSyntaxTree(script.SourceText, script.Options.ParseOptions ?? DefaultParseOptions, script.Options.FilePath);
Microsoft.CodeAnalysis.Scripting (3)
ScriptOptions.cs (3)
182: this(filePath: other.FilePath, 203/// Creates a new <see cref="ScriptOptions"/> with the <see cref="FilePath"/> changed. 206=> (FilePath == filePath) ? this : new ScriptOptions(this) { FilePath = filePath ?? "" };