mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			843 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			843 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2019 Caio Lima. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
description: It is possible to add private fields on frozen objects
 | 
						|
esid: sec-define-field
 | 
						|
info: |
 | 
						|
  DefineField(receiver, fieldRecord)
 | 
						|
    ...
 | 
						|
    8. If fieldName is a Private Name,
 | 
						|
      a. Perform ? PrivateFieldAdd(fieldName, receiver, initValue).
 | 
						|
    9. Else,
 | 
						|
      a. Assert: IsPropertyKey(fieldName) is true.
 | 
						|
      b. Perform ? CreateDataPropertyOrThrow(receiver, fieldName, initValue).
 | 
						|
    10. Return.
 | 
						|
includes: [compareArray.js]
 | 
						|
features: [class, class-fields-private, class-fields-public]
 | 
						|
flags: [onlyStrict]
 | 
						|
---*/
 | 
						|
 | 
						|
class Test {
 | 
						|
  f = this;
 | 
						|
  #g = (Object.freeze(this), "Test262");
 | 
						|
 | 
						|
  get g() {
 | 
						|
    return this.#g;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
let t = new Test();
 | 
						|
assert.sameValue(t.f, t);
 | 
						|
assert.sameValue(t.g, "Test262");
 |