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