19 lines
		
	
	
		
			465 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			465 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
[
 | 
						|
    {
 | 
						|
        "description": "ECMA 262 regex dialect recognition",
 | 
						|
        "schema": { "format": "pattern" },
 | 
						|
        "tests": [
 | 
						|
            {
 | 
						|
                "description": "[^] is a valid regex",
 | 
						|
                "data": "[^]",
 | 
						|
                "valid": true
 | 
						|
            },
 | 
						|
            {
 | 
						|
                "description": "ECMA 262 has no support for lookbehind",
 | 
						|
                "data": "(?<=foo)bar",
 | 
						|
                "valid": false
 | 
						|
            }
 | 
						|
        ]
 | 
						|
    }
 | 
						|
]
 |