// Edge case test file
// Duplicate patterns for testing
function processData(input) {
return input;
}
function processData(newInput) {
return newInput.toLowerCase();
}
// Empty functions
function emptyFunction() {
}
// Single line function
function singleLine() { return true; }
// Multiline strings with special chars
const template = `
// This is a comment inside string
function fakeFunction() {
return "nested content";
}
`;
// Patterns that might confuse regex
const regexTest = "function processData.*?^}";
const specialChars = "/*comment*/function test(){}//end";
// Very long line that might cause issues
const longLine = "a".repeat(1000) + "function findThis()" + "b".repeat(1000);
// End marker
// FINAL_MARKER