mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:02:44 +00:00 
			
		
		
		
	LibJS: Fix dump() indentation of UpdateExpression with suffix operator
This commit is contained in:
		
							parent
							
								
									2dbea60fe2
								
							
						
					
					
						commit
						aa68de3530
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -1442,9 +1442,10 @@ void UpdateExpression::dump(int indent) const | |||
|     } | ||||
| 
 | ||||
|     ASTNode::dump(indent); | ||||
|     print_indent(indent + 1); | ||||
|     if (m_prefixed) | ||||
|     if (m_prefixed) { | ||||
|         print_indent(indent + 1); | ||||
|         printf("%s\n", op_string); | ||||
|     } | ||||
|     m_argument->dump(indent + 1); | ||||
|     if (!m_prefixed) { | ||||
|         print_indent(indent + 1); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Linus Groh
						Linus Groh