-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
For example, I want the following query
(() => {
function needExactMatch() {
var a = 1;
var a = 2;
}
})()
to match
(() => {
OtherStatements1;
OtherStatements2;
function needExactMatch() {
var a = 1;
var a = 2;
}
OtherStatements;
})()
and not match
(() => {
OtherStatements1;
OtherStatements2;
function needExactMatch() {
OtherStatements;
var a = 1;
OtherStatements;
var a = 2;
OtherStatements;
}
OtherStatements;
})()
Maybe some multiple statements wildcard like $$$$
cound be imported?
So I can use this query in exact mode to achieve this.
(() => {
$$$$;
function needExactMatch() {
var a = 1;
var a = 2;
}
$$$$;
})()
Metadata
Metadata
Assignees
Labels
No labels