iansaun
Results
1
issues of
iansaun
## Expected Behavior The "fn_name() {" regex /\b(?!(?:if|for|switch|while|with|catch)\b)(?:(?:static)\s+)?(\S+)\s*\(.*?\)\s*\{/ should match code like "fn_name() { stuff" ## Current Behavior The regex matches this code if (a) { foo(); } else if...