ConstCreate a regex that matches a function call pattern.
The function name to match.
A regex that matches functionName( as a whole word.
Check if a line is a comment line.
The line to check (trimmed).
true if the line starts with a comment marker.
Check if a line is NOT a comment line.
The line to check (trimmed).
true if the line does NOT start with a comment marker.
Create a regex that matches an identifier as a whole word.
The identifier to match.
A regex with word boundaries.
Helper functions for working with patterns.