mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			842 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			842 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// This file was procedurally generated from the following sources:
 | 
						|
// - src/class-elements/ctor-called-after-fields-init.case
 | 
						|
// - src/class-elements/default/cls-expr.template
 | 
						|
/*---
 | 
						|
description: The constructor method is called after the fields are initalized (field definitions in a class expression)
 | 
						|
esid: prod-FieldDefinition
 | 
						|
features: [class-fields-public, class]
 | 
						|
flags: [generated]
 | 
						|
info: |
 | 
						|
    [[Construct]] ( argumentsList, newTarget)
 | 
						|
 | 
						|
    8. If kind is "base", then
 | 
						|
      a. Perform OrdinaryCallBindThis(F, calleeContext, thisArgument).
 | 
						|
      b. Let result be InitializeInstanceFields(thisArgument, F).
 | 
						|
      ...
 | 
						|
    ...
 | 
						|
    11. Let result be OrdinaryCallEvaluateBody(F, argumentsList).
 | 
						|
    ...
 | 
						|
 | 
						|
---*/
 | 
						|
var ctor;
 | 
						|
 | 
						|
 | 
						|
var C = class {
 | 
						|
  constructor() {
 | 
						|
    ctor = this.foo;
 | 
						|
  }
 | 
						|
  foo = 42;
 | 
						|
}
 | 
						|
 | 
						|
var c = new C();
 | 
						|
 | 
						|
assert.sameValue(ctor, 42);
 |