mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:12:43 +00:00 
			
		
		
		
	LibJS: Fix computed property ending token in binding pattern parsing
The syntax is supposed to be '[expression]', not '[expression['.
This commit is contained in:
		
							parent
							
								
									b5b84029ab
								
							
						
					
					
						commit
						7dae25eceb
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -1635,7 +1635,7 @@ RefPtr<BindingPattern> Parser::parse_binding_pattern() | |||
|             } else if (match(TokenType::BracketOpen)) { | ||||
|                 consume(); | ||||
|                 name = parse_expression(0); | ||||
|                 consume(TokenType::BracketOpen); | ||||
|                 consume(TokenType::BracketClose); | ||||
|             } else { | ||||
|                 syntax_error("Expected identifier or computed property name"); | ||||
|                 return {}; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Ali Mohammad Pur
						Ali Mohammad Pur