Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

Commit

Permalink
#35 try adding explicit interface for F# interop
Browse files Browse the repository at this point in the history
  • Loading branch information
Cameron Taggart committed Nov 14, 2014
1 parent d7989ad commit f789a20
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion SymbolStore/PdbReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,18 @@ public byte[] GetSymAttribute(SymbolToken parent, string name)
return this.symReader.GetSymAttribute(parent, name);
}

public ISymbolVariable[] GetVariables(SymbolToken parent)
{
return this.symReader.GetVariables(parent);
}

public SymbolToken UserEntryPoint
{
get { return this.symReader.UserEntryPoint; }
}

// explicit to see what F# does
public ISymbolDocument[] ISymbolReader.GetDocuments()
ISymbolDocument[] ISymbolReader.GetDocuments()
{
return this.symReader.GetDocuments();
}
Expand All @@ -167,5 +177,6 @@ public ISymbolNamespace[] Namespaces
{
get { return this.symReader.GetNamespaces(); }
}

}
}

0 comments on commit f789a20

Please sign in to comment.