Microsoft.Scripting.Debugging.CompilerServices.DebugContext.Lookup C# (CSharp) Method

Lookup() private method

private Lookup ( string sourceFile ) : DebugSourceFile
sourceFile string
return DebugSourceFile
        internal DebugSourceFile Lookup(string sourceFile) {
            DebugSourceFile debugSourceFile;
            if (_sourceFiles.TryGetValue(sourceFile, out debugSourceFile)) {
                return debugSourceFile;
            }

            return null;
        }