mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 12:22:44 +00:00 
			
		
		
		
	Everywhere: Make use of container version of all_of
Problem: - New `all_of` implementation takes the entire container so the user does not need to pass explicit begin/end iterators. This is unused except is in tests. Solution: - Make use of the new and more user-friendly version where possible.
This commit is contained in:
		
							parent
							
								
									2c042e3530
								
							
						
					
					
						commit
						97bd13264a
					
				
					 10 changed files with 10 additions and 11 deletions
				
			
		|  | @ -58,7 +58,7 @@ OrdinaryFunctionObject::OrdinaryFunctionObject(GlobalObject& global_object, cons | |||
|         set_this_mode(ThisMode::Global); | ||||
| 
 | ||||
|     // 15.1.3 Static Semantics: IsSimpleParameterList, https://tc39.es/ecma262/#sec-static-semantics-issimpleparameterlist
 | ||||
|     set_has_simple_parameter_list(all_of(m_parameters.begin(), m_parameters.end(), [&](auto& parameter) { | ||||
|     set_has_simple_parameter_list(all_of(m_parameters, [&](auto& parameter) { | ||||
|         if (parameter.is_rest) | ||||
|             return false; | ||||
|         if (parameter.default_value) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Lenny Maiorani
						Lenny Maiorani