mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:12:46 +00:00 
			
		
		
		
	LibJS: Add ArrayPrototype and implement Array.prototype.push()
This function is ultimately supposed to be generic and allow any |this| that has a length property, but for now it only works on our own Array object type.
This commit is contained in:
		
							parent
							
								
									8f7d4f67a4
								
							
						
					
					
						commit
						bceabd7c4b
					
				
					 9 changed files with 110 additions and 4 deletions
				
			
		|  | @ -697,7 +697,7 @@ Value ArrayExpression::execute(Interpreter& interpreter) const | |||
| { | ||||
|     auto* array = interpreter.heap().allocate<Array>(); | ||||
|     for (auto& element : m_elements) { | ||||
|         array->append(element.execute(interpreter)); | ||||
|         array->push(element.execute(interpreter)); | ||||
|     } | ||||
|     return array; | ||||
| } | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling