For example, I want the following query
(()=>{functionneedExactMatch(){vara=1;vara=2;}})()to match
(()=>{OtherStatements1;OtherStatements2;functionneedExactMatch(){vara=1;vara=2;}OtherStatements;})()and not match
(()=>{OtherStatements1;OtherStatements2;functionneedExactMatch(){OtherStatements;vara=1;OtherStatements;vara=2;OtherStatements;}OtherStatements;})()Maybe some multiple statements wildcard like $$$$ cound be imported?
So I can use this query in exact mode to achieve this.
(()=>{$$$$;functionneedExactMatch(){vara=1;vara=2;}$$$$;})()
For example, I want the following query
to match
and not match
Maybe some multiple statements wildcard like
$$$$cound be imported?So I can use this query in exact mode to achieve this.