Open
Description
👓 What did you see?
Hello, I'm setting Cucumber LSP for nvim, and I'm getting errors during regex parsing.
I'm trying to glue steps from package: https://github.com/FriendsOfBehat/MinkExtension
Regex parsing fails with error:
[ERROR][2024-04-06 11:07:53] ...lsp/handlers.lua:535 'Failed to reindex: Invalid regular expression: /Opens specified page\n * Example: Given I am on "http://batman.com"\n * Example: And I am on "/articles/isBatmanBruceWayne"\n * Example: When I go to "/articles/isBatmanBruceWayne"\n *\n * /^(?:|I )am on "(?P<page>[^"]+)"$/\n * @When /^(?:|I )go to "(?P<page>[^"]+)"$//: Invalid group'
Here is the corresponding bloc:
/**
* Opens specified page
* Example: Given I am on "http://batman.com"
* Example: And I am on "/articles/isBatmanBruceWayne"
* Example: When I go to "/articles/isBatmanBruceWayne"
*
* @Given /^(?:|I )am on "(?P<page>[^"]+)"$/
* @When /^(?:|I )go to "(?P<page>[^"]+)"$/
*/
public function visit($page)
{
$this->visitPath($page);
}
What can be wrong? And what package is responsible for parsing those steps? I can't find Invalid regular expression anywhere in the source code.
Thanks!
✅ What did you expect to see?
Regex parsing should work, as those steps are executed successfully during testing.
📦 Which tool/library version are you using?
node 21.7.1
npm 10.5.0
nvim 0.9.5
@cucumber/language-server 1.5.0
🔬 How could we reproduce it?
Use this nvim lspconfig and check lsp logs:
require('lspconfig').cucumber_language_server.setup {
capabilities = capabilities,
settings = {
cucumber = {
features = { 'behat/**/*.feature' },
glue = { 'vendor/friends-of-behat/mink-extension/src/Behat/MinkExtension/Context/**/*.php' },
},
}
}
📚 Any additional context?
I've never installed this package before, so maybe I'm missing a package or configuration.