Skip to content
This repository has been archived by the owner on Sep 24, 2018. It is now read-only.

If the constructor's parameters contains something like IInterface<I1, I2>, the Initialize popup cannot be triggered by editor.action.quickFix #26

Open
cateyes99 opened this issue Mar 15, 2017 · 1 comment

Comments

@cateyes99
Copy link

cateyes99 commented Mar 15, 2017

The code blow is fine, the Initialize popup can be triggered by editor.action.quickFix

public ClassName(IInterface<I1> a)
{
}

but for this below one, the Initialize popup cannot be triggered

public ClassName(IInterface<I1, I2> a)
{ 
}
@simsod
Copy link
Collaborator

simsod commented Apr 21, 2017

Ah, since we don´t have proper C# codedom here, it´s just a regex-based solution.
Don´t have the time to dig into the code right now, but my guess is that it´s the , that breaks the regex pattern matching.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants