bbondy/codecheckjs

Implement context sensitive expression skips

Closed this issue · 2 comments

That is a placeholder of _ can be used to skip any further processing and skip it.

What I currently have isn't ideal with the skip... because a) You need to know the Mozilla Parser API to do it, and b) It is a global skip.

Implemented, now you can do things like if(_) {
} to match if( x && (y > 0)) {
}

var $$; to match var x= 3; or var x;