mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-28 11:38:01 +00:00 
			
		
		
		
	 7b926555b7
			
		
	
	
		7b926555b7
		
	
	
	
	
		
			
			This is implemented, in addition to the ML-style one, because Rust does it. If we don't, we'll never hear the end of it. This commit also refactors some duplicate parts of the parser into a dedicated function.
		
			
				
	
	
		
			177 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			177 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // exact-check
 | |
| 
 | |
| const EXPECTED = [
 | |
|     // not a HOF query
 | |
|     {
 | |
|         'query': 'u32 -> !',
 | |
|         'others': [],
 | |
|     },
 | |
| 
 | |
|     // ML-style higher-order function notation
 | |
|     {
 | |
|         'query': 'bool, (u32 -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'u8, (u32 -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_once"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'i8, (u32 -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_mut"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'char, (u32 -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(first<u32> -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(second<u32> -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_once"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(third<u32> -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_mut"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(u32 -> !) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_"},
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|             {"path": "hof", "name": "fn_mut"},
 | |
|             {"path": "hof", "name": "fn_once"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(str, str -> i8) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "multiple"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(str ->) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "multiple"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(-> i8) -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "multiple"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': '(str -> str) -> ()',
 | |
|         // params and return are not the same
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(i8 ->) -> ()',
 | |
|         // params and return are not the same
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': '(-> str) -> ()',
 | |
|         // params and return are not the same
 | |
|         'others': [],
 | |
|     },
 | |
| 
 | |
|     // Rust-style higher-order function notation
 | |
|     {
 | |
|         'query': 'bool, fn(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'u8, fnonce(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_once"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'u8, fn(u32) -> ! -> ()',
 | |
|         // fnonce != fn
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'i8, fnmut(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_mut"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'i8, fn(u32) -> ! -> ()',
 | |
|         // fnmut != fn
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'char, fn(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'char, fnmut(u32) -> ! -> ()',
 | |
|         // fn != fnmut
 | |
|         'others': [],
 | |
|     },
 | |
|     {
 | |
|         'query': 'fn(first<u32>) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'fnonce(second<u32>) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_once"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'fnmut(third<u32>) -> ! -> ()',
 | |
|         'others': [
 | |
|             {"path": "hof", "name": "fn_mut"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'fn(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             // fn matches primitive:fn and trait:Fn
 | |
|             {"path": "hof", "name": "fn_"},
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'trait:fn(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             // fn matches primitive:fn and trait:Fn
 | |
|             {"path": "hof", "name": "fn_"},
 | |
|         ],
 | |
|     },
 | |
|     {
 | |
|         'query': 'primitive:fn(u32) -> ! -> ()',
 | |
|         'others': [
 | |
|             // fn matches primitive:fn and trait:Fn
 | |
|             {"path": "hof", "name": "fn_ptr"},
 | |
|         ],
 | |
|     },
 | |
| ];
 |