6 references to Create
Microsoft.CodeAnalysis.Features (1)
Debugging\DebugInformationReaderProvider.cs (1)
72
=> EditAndContinueMethodDebugInfoReader.
Create
(_symReader, _version);
Microsoft.CodeAnalysis.Features.UnitTests (5)
EditAndContinue\EditAndContinueMethodDebugInfoReaderTests.cs (5)
35
Assert.Throws<ArgumentNullException>(() => EditAndContinueMethodDebugInfoReader.
Create
((ISymUnmanagedReader5)null));
37
Assert.Throws<ArgumentNullException>(() => EditAndContinueMethodDebugInfoReader.
Create
(null, 1));
40
Assert.Throws<ArgumentOutOfRangeException>(() => EditAndContinueMethodDebugInfoReader.
Create
(mockSymReader, 0));
41
Assert.Throws<ArgumentOutOfRangeException>(() => EditAndContinueMethodDebugInfoReader.
Create
(mockSymReader, -1));
80
reader = EditAndContinueMethodDebugInfoReader.
Create
((ISymUnmanagedReader5)symReader, version: 1);