mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			644 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			644 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2019 Google, Inc.  All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
/*---
 | 
						|
esid: prod-OptionalExpression
 | 
						|
description: >
 | 
						|
  optional chain on recursive optional expression
 | 
						|
info: |
 | 
						|
  Left-Hand-Side Expressions
 | 
						|
    OptionalExpression:
 | 
						|
      OptionalExpression OptionalChain
 | 
						|
features: [optional-chaining]
 | 
						|
---*/
 | 
						|
 | 
						|
const obj = {
 | 
						|
  a: {
 | 
						|
    b: 22
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
function fn () {
 | 
						|
  return {};
 | 
						|
}
 | 
						|
 | 
						|
// OptionalExpression (MemberExpression OptionalChain) OptionalChain
 | 
						|
assert.sameValue(22, obj?.a?.b);
 | 
						|
// OptionalExpression (CallExpression OptionalChain) OptionalChain
 | 
						|
assert.sameValue(undefined, fn()?.a?.b);
 |